algos-js
v0.3.0
Published
Implementation of some CS algorithms in js
Downloads
4
Readme
Module algos-js
What is algos-js?
The algos-js package contains implementations of some classic computer science algorithms. My primary goal is to understand those algorithms and the best way to do that is to code them myself.
Along the way I practice test driven development (with mocha), continuos integration (with travis and coveralls), version control (with git and github), packaging with npm and a lot more.
How to test?
To run all of the unit-tests:
$ mocha --recursive
To run unit-tests for a specific module:
$ mocha test/test_binsearch.js
To run all the unit-tests and produce a coverage report:
$ npm test