Async await is coming our way with v8 slated to implement it in Q2 2016.
Node needs to be prepared :)
Possible areas of impact:
- V8's implementation needs to be tracked so we make sure we have our right hooks when it lands. Things like
unhandledRejection might possibly be impacted as well as the way promises are currently queued and run in Node.
- We need to consider the whole operational vs. programmer error issue here.
- Core dumps should work properly in async methods.
Probably many others, just starting the discussion.