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:
- Creating a simple event emitter using nodejs
- Error handling in promises interview question
- Installing, Listing and Uninstalling packages using npm
- What does npm start do in nodejs
- Configuring jshint as a pre-commit hook for your nodejs applications