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:
- Reinitialize addthis after loading ajax content
- Error handling in promises interview question
- Debugging nodejs applications using node-inspector and Chrome Dev Tools
- Access the request body of a post request in your nodejs - expressjs app.
- What is npm shrinkwrap and when is it needed