workshopper / learnyounode

Learn You The Node.js For Much Win! An intro to Node.js via a set of self-guided workshops.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Tutorial seems to be out of date

antoinecarat opened this issue · comments

The references are out-of-date.
For example: async and after are now part of the core of node.js under the names of async/await. The tutorial says that they are 3rd p packages...

The be clear, async and after are npm packages:

https://www.npmjs.com/package/async
https://www.npmjs.com/package/after

They're not part of Node.js core.

You're referring to the async/await JavaScript language features which are indeed now part of Node.js, but those are unrelated.