A repository to start from for javascript katas
Requirements:
- npm
- node
One posibility is to clone the repo and work on a branch.
git clone <url>
git checkout -b <name of branch>
I would suggest to name the branch something like 2019_10_11_numberToWordKata
Another possibility is to download this project as a zipfile, extract it in a directory with the name of the kata.
Don't forget to init the git repository:
git init
After you downloaded the project you should install the dependencies. This means at least do the following:
npm install
To run the tests, use the standard way of running tests in npm:
npm test