How to use babel 7 in node project
Issue #650
Install
1 | npm install @babel/core |
Configure .babelrc
1 | { |
In package.json
, transpile using npx babel
then node dist/index.js
1 | "start": "cp ../landing/src/apps/factory.js copied/factory.js && npx babel index.js --out-file dist/index.js && npx babel copied/factory.js --out-file dist/factory.js && node dist/index.js" |