node-scraper-citi v1.2.0
node-es6-starter
Node.js ES6 (aka ES2015) starter with Babel.js & ESLint
- Write node.js source code in ES6 syntax.
- Transpile to ES5.
- Publish ES5 code to NPM.
Motivation
I created this repo to use it as a starting point for build npm libaries using ES6 syntax.
Babel.js
The current, stable version of node.js supports 95% ES6 features.
Also, we build npm modules to run on older versions of Node.js.
We will use Babel.js with ES2015 preset to compile ES6 code to ES5.
Coding style
Airbnb has an excellent style guide for ES6. We will follow the guide and adhere to the recommended coding style.
ESLint
We will use ESLint with Airbnb style and pre-parse our code to detect violations of the style.
Quick Start
Make sure you have recent, stable version of node (>= 6.1.0).
nave use stable node -vClone or download this repo.
Get latest releases of the tools
npm update --save
Commands
Lint
npm run lintBuild
npm run buildRun
ES6 code via babel
npm run devES5 code (Transpiled)
npm run build
node lib/or
npm startPreview Publish
npm pack
tar -tf node-es6-starter-1.0.0.tgzPublish to npm registry
Registry is specifed in package.json publishConfig entry
Delete the .tgz file before publishing.
npm publishCode Directories
./src - source code, stays in git repo.
./lib - transpiled ES5 code, not saved in git, gets published to npm.