This project allows you to quickly start coding with ECMAScript 6+ in node with tests from the beginnning
Install degit
globally if you don't have it yet: npm i -g degit
Check out the latest commit of this repository and install dependencies:
degit https://github.com/hexagon6/es-testing.git my-projectfolder
npm install
oryarn
npm test
or yarn test
npm test -w
or yarn test -w
This command runs tests on each save of a file and let's you focus on your code.
├── src
│ └── index.js <- implementation
├── test
│ └── index.test.js <- tests
Enjoy!