Is it okay to use babel-node in production
I have been developing a site using babel-node and browserify with the babelify transform, to support ES6 syntax. I am just wondering, can I run this in production as babel-node server rather than node server What other options do I have to run ES6 in node? Here are the commands I am running for build and start in development // npm run build browserify -t [babelify] client.js > public/js/bundle.js", // npm start babel-node server.js" Here are my dev dependencies "babel": "^4.0.1", "babelify": "^5.0.3", "browserify": "^8.0.3" For the client side code , you're doing the correct thing. babelify