- backend framework,
express
- install:
npm install express
- install:
- templating engine,
handlebars
- *install:
npm install express-handlebars
- *install:
- unit testing framework,
jest
- install:
npm install --save-dev jest
- run test:
npm test
, add"test": "jest"
to scripts
- install:
- code and test coverage,
jest
npm test -- --coverage
- integration framework,
puppeteer
- install:
npm install --save-dev puppeteer
- install:
- linting,
eslint
- install:
npm install --save-dev eslint
- configure:
./node_modules/.bin/eslint --init
- install: