| 
                    
                         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:
- What is an npmignore file and what is it used for
 - Organizing your expressjs routes in separate files.
 - Dynamic module loading with require
 - Use es6 and es6+ in eslint with babel
 - Resolved - Error: listen eaccess using nodejs and pm2