
Security News
Software Engineering Daily Podcast: Feross on AI, Open Source, and Supply Chain Risk
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.
Async/Await for ES6 with Generators and Promises
Implements async/await for ES6 (specifically for Node 6.x which is the current Node versions on the three big FaaS providers: AWS Lambda, Google Cloud Functions and Azure Functions).
See Async/Await with Generators and Promises for a blog post about this project.
Using npm:
$ npm install es6-async
In Node.js:
const makeAsync = require('es6-async')
Write code the same way you write code with async/await with the difference to use makeAsync instead of the async keyword and replace await with yield. Also note that makeAsync takes a generator defined with the function* syntax.
const makeAsync = require('es6-async')
const timeout = (milliseconds) => new Promise(resolve => setTimeout(resolve, milliseconds))
const random = () => Promise.resolve(Math.random())
const asyncFunc = makeAsync(function* () {
yield timeout(1000)
return yield random()
})
asyncFunc().then(v => console.log('Finished', v))
The same code written using async/await:
async function asyncFunc() {
await timeout(1000)
return await random()
}
asyncFunc().then(v => console.log('Finished', v))
I've found one small difference that needs to be pointed out:
const resultGen = yield Promise.resolve(100) + 100
const resultAsync = await Promise.resolve(100) + 100
// resultGen = "[object Promise]100"
// resultAsync = 200
In the case of yield, Javascript first evaluates Promise.resolve(100) + 100 which it does by converting both to strings and then sends that to yield. The solution to this is to wrap it in parenthesis.
const resultGen = (yield Promise.resolve(100)) + 100
// resultGen = 200
const makeAsync = require('es6-async')
const timeout = (milliseconds) => new Promise(resolve => setTimeout(resolve, milliseconds))
const random = () => Promise.resolve(Math.random())
const asyncFunc = makeAsync(function* () {
yield timeout(1000)
return yield random()
})
module.exports.randomGen = makeAsync(function*(req, res) {
res.status(200).send('Random value is: ' + (yield asyncFunc()))
})
FAQs
Async/Await for ES6 with Generators and Promises
We found that es6-async demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.

Security News
GitHub has revoked npm classic tokens for publishing; maintainers must migrate, but OpenJS warns OIDC trusted publishing still has risky gaps for critical projects.

Security News
Rust’s crates.io team is advancing an RFC to add a Security tab that surfaces RustSec vulnerability and unsoundness advisories directly on crate pages.