utopiaio / Lethal-Weapon-5

Rotten Tomatoes scraper using their private search API - no API key needed
https://youtu.be/Ts3-eBuaVqg
1 stars 0 forks source link

await & async support #1

Closed b3rew closed 7 years ago

b3rew commented 7 years ago

I far as i know await & async are not supported on ES6 (I might be wrong) so what do you recommend using NodeJs version 6.x.x

or I could just use 'nightly' versions but

Disclaimer: the async/await functionality is only available in the nightly, unstable version of Node.js

Edit: include the quote

utopiaio commented 7 years ago

Async/Await are just syntactic sugars over generators. The feature has been available without the flag [--harmony] since Node 7.6 [released 2017-02-21, in JavaScript time that's like 2 years ago]

utopiaio commented 7 years ago