记录一次在node中愉快的使用ES6的语法
程序员文章站
2022-07-16 20:02:25
...
一、基本步骤
-
1、安装依赖包
npm install @babel/runtime npm install @babel/cli @babel/core @babel/node @babel/preset-env nodemon -D
-
2、项目根目录下创建一个
.babelrc
的文件{ "presets": [ [ "@babel/preset-env", { "targets": { "node": "current" } } ] ] }
-
3、在
package.json
中配置脚本"scripts": { "dev": "nodemon --exec babel-node index.js" },
-
4、测试直接在项目中使用
ES6
的语法
上一篇: 《ECMAScript 6 入门》笔记
下一篇: ES6知识点整理Map的应用