/code-kata-starter-nodejs

A starter project for code katas, set up for Node.js and Jasmine as the test runner. Use this template to generate a repo of your own in Github.

Primary LanguageJavaScriptMIT LicenseMIT

Node.js code kata starter repo

This repo contains nothing but a trivial passing test.

We assume that you have Node.js and npm installed. To check your environment is set up and works run the following commands from the console:

  • npm install
  • npm test

You should see output similar to the following:

> code-kata-starter@1.0.0 test
> npm run lint && jasmine


> code-kata-starter@1.0.0 lint
> jshint src spec

Randomized with seed 89036
Started
.


1 spec, 0 failures
Finished in 0.005 seconds
Randomized with seed 89036 (jasmine --random=true --seed=89036)

This means you are all ready for your code kata, enjoy!