zl程序教程

您现在的位置是:首页 >  后端

当前栏目

[Node.js] Using ES6 and beyond with Node.js

ES6JSNode and with Using Beyond
2023-09-14 09:00:54 时间

If you're used to using all the latest ES6+ hotness on the front end via Babel, working in Node.js can feel like a step back. Thankfully, it's easy to bring all the Babel goodness with you to the backend, and that's exactly what this lesson covers.

 

Install:

npm install --save-dev babel-cli babel-preset-es2015 nodemon

 

package.json:

nodemon --exec babel-node app.js

 

Then you can use ES6 feature like destructing...