Be the first user to complete this post

  • 0
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
It transpiles your app at runtime by hooking into all require calls, and lets you start your app with regular Node.
require('babel-register');
require('./server/app.js');
  • Run the index file
node index.js

Further Reading :



Also Read:

  1. Understanding routers in express 4.0 - Visually
  2. Use es6 and es6+ in eslint with babel
  3. Understanding expressjs middleware with a visual example
  4. exports is not defined
  5. Passing the store down implicitly via context in a react redux app