Be the first user to complete this post
|
Add to List |
Use node in es6 syntax with babel transpiling
- Install the following packages :
npm i --save babel-register
npm i --save babel-preset-latest
- Create an entry point. For example, index.js
require('babel-register');
require('./server/app.js');
- Run the index file
node index.js
Further Reading :
Also Read:
- Scaling a basic nodejs application using clusters
- nodejs: generate uuid / guid
- Understanding expressjs middleware with a visual example
- webpack with babel6 and react
- Writing multiline sql queries in javascript using knex