Stavo sperimentando sull'uso della versione Node 6.2.1 con un po 'del mio codice. Aveva in programma di migrare la maggior parte dei codici iper-callback orientati verso qualcosa che sembra più pulito e che forse ha prestazioni migliori.SyntaxError: Funzione token imprevisto - Async Await Nodejs
Non ho idea del perché, il terminale genera un errore quando provo ad eseguire il codice del nodo.
helloz.js
(async function testingAsyncAwait() {
await console.log("For Trump's Sake Print me!");
})();
Logs-
BOZZMOB-M-T0HZ:rest bozzmob$ node helloz.js
/Users/bozzmob/Documents/work/nextgennms/rest/helloz.js:1
(function (exports, require, module, __filename, __dirname) { (async function testingAsyncAwait() {
^^^^^^^^
SyntaxError: Unexpected token function
at Object.exports.runInThisContext (vm.js:53:16)
at Module._compile (module.js:513:28)
at Object.Module._extensions..js (module.js:550:10)
at Module.load (module.js:458:32)
at tryModuleLoad (module.js:417:12)
at Function.Module._load (module.js:409:3)
at Function.Module.runMain (module.js:575:10)
at startup (node.js:160:18)
at node.js:456:3
BOZZMOB-M-T0HZ:rest bozzmob$ node -v
v6.2.1
Che cosa mi manca? Per favore, gettami un po 'di luce sullo stesso.
Update 1:
Ho cercato di usare Babel come suggerito Quentin, ma, sto ottenendo il seguente errore ancora.
aggiornato Code-
require ("babel-core/register"); require ("babel-polyfill");
(async function testingAsyncAwait() {
await console.log("For Trump's Sake Print me!");
})();
funzioni Logs-
BOZZMOB-M-T0HZ:rest bozzmob$ babel helloz.js > helloz.trans.js
SyntaxError: helloz.js: Unexpected token (3:7)
1 | require("babel-polyfill");
2 |
> 3 | (async function testingAsyncAwait() {
| ^
4 | await console.log("For Trump's Sake Print me!");
5 | })();
Node.js ora supporta ufficialmente la funzione asincrona. [vedi questa risposta] (http://stackoverflow.com/a/41757243/4440874). –
@JyotmanSingh Sì. So che ora supporta. Questa domanda mi stava chiedendo circa un anno fa quando dovevamo usare Babele. Grazie per la menzione però. – bozzmob
Ho appena pubblicato qui perché molte persone verranno ancora a questa domanda. Dovrebbero saperlo. –