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. gzip compress and cache api response in express
  2. Configure The 'script' tag In package.json To Run Multiple Commands
  3. Testing promise sequence using mocha, chai, chai-as-promised, sinon
  4. Writing multiline sql queries in javascript using knex
  5. Access the request body of a post request in your nodejs - expressjs app.