This is the algorithms code implementing in JavaScript from book "Grokking Algorithms"
- Language: JavaScript ES6
- JavaScript run-time environment: Node.js
- JavaScript Testing Framework: Jest
- JavaScript linting utility: ESLint
- JavaScript Style Guide: Airbnb
You can use the environment configuration template for your own code implementing in JavaScript with testing on Jest.
For using you need install the Node.js.
cd /path_to_working_directory
git clone https://github.com/kononovit/grokking_algorithms.git
make install
make lint
or
npm run lint <path_to_directory>
make test
or
npm test <path_to_directory>