ES 之 babel
//初始化 npm init -y npm install --save-dev @babel/core @babel/cli @babel/preset-env
安装转换插件
npm install --save-dev @babel/plugin-transform-arrow-functions
package.json
"scripts": { "babel": "babel app.js --watch --out-file app-complied.js" }, "devDependencies": { "@babel/cli": "^7.8.4", "@babel/core": "^7.8.4", "@babel/plugin-transform-arrow-functions": "^7.8.3", "@babel/preset-env": "^7.8.4" }, "babel":{ "plugins": [ ["@babel/plugin-transform-arrow-functions"] ] }
npm run babel
相关推荐
82530995 2020-10-15
ruanhongbiao 2020-08-16
FEvivi 2020-06-16
PANH 2020-06-12
zhongweinan 2020-06-10
PANH 2020-06-07
PANH 2020-06-01
82530995 2020-05-10
webfullStack 2020-04-26
zhongweinan 2020-04-24
FEvivi 2020-04-17
FEvivi 2020-04-15
zhongweinan 2020-03-03
zhongweinan 2020-02-21
PANH 2020-02-19
PANH 2020-01-23
zhongweinan 2020-01-21
上海彭彭 2020-01-14
yinuoqingqin 2020-01-13