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:
- Accessing the request body and session in nodejs using express
- Setup passportjs for local authentication and authorization using expressjs
- Writing multiline sql queries in javascript using knex
- Setup nginx with multi domain websites running on nodejs
- Debugging nodejs applications using node-inspector and Chrome Dev Tools
- set the default node version using nvm
- Understanding nodejs module exports and require
- exports is not defined