Inverse best practices for new Node projects.
| Feature | Usage |
|---|---|
| Babel build with async/await and object rest/spread | npm run build |
| ESLint on JS with prettier | npm run lint and npm run fix |
| Prettier on css, json, md | npm run pretty |
| Jest testing | npm test |
| Pre-commit pretty, fix, and test | husky and lint-staged |
git clone git@github.com:invrs/node-starter.git [PROJECT]
cd [PROJECT]
rm -rf .git && git init .
git remote add origin git@github.com:invrs/[PROJECT].gitEdit package.json and README.md.
