Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/micha149/code-katas
A little boilder plate to start code katas with javascript
https://github.com/micha149/code-katas
Last synced: 7 days ago
JSON representation
A little boilder plate to start code katas with javascript
- Host: GitHub
- URL: https://github.com/micha149/code-katas
- Owner: micha149
- Created: 2014-01-17T06:42:59.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2016-09-09T04:23:36.000Z (about 8 years ago)
- Last Synced: 2024-10-12T03:22:21.628Z (about 1 month ago)
- Language: JavaScript
- Homepage:
- Size: 13.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Code-Kata Template for NodeJS
To use this code kata boilerplate you need `nodeJs` with its package manager `npm` installed. To install all necessary dependencies just run
$ npm install
After that, you be able to run the unit tests with
$ npm test
Generating a code coverage can be done by
$ npm run coverage
$ open coverage/index.htmlThere is also a npm task which runs mocha in watch mode. This is pretty handy because you don't need to wait each time
until babel has been booted.$ npm run watch