nodejsがasyncとawaitキーワードに対応していない問題を解決します.
407 ワード
1、
$ npm install --save-dev babel-cli
2、$ npm install --save-dev babel-preset-es2015 babel-preset-es2017
3、クリアー .babelrc
in the project root folder with the following contensts:{ "presets": ["es2015","es2017"] }
4、Run your script with babel-node
$ babel-node async.js
元URL:stackover flow