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:
- combineReducers in reduxjs explained
- Passing the store down implicitly via context in a react redux app
- Send email using nodejs and express in 5 simple steps
- Understanding semver versioning for your nodejs packages
- Debugging nodejs applications using node-inspector and Chrome Dev Tools