aw8json
v0.4.16
Published
stream async iterables and promises inside of a json
Maintainers
Readme
aw8json
stream async iterables and promises inside of a json
const stream = Aw8JSON.stringify({ hello: Promise.resolve("world") })
//send stream via REST body
const result = await Aw8JSON.parse(stream)
result.hello.then(console.log)
//logs "world"