An example hello world app, showing how to build a REST API server using express.js and ES6 and build for production
# setup
git clone https://github.com/rajeshdh/express-es6.git
cd express-es6
npm install
# start the server (starts babel-node with nodemon)
npm start
# open in browser
http://localhost:3000
# build for production (output to dist folder)
npm run build