This is a collection of algorithmic solutions written in ES2016.
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. It is not assumed you would need to deploy the project on a live system.
You will need to install node
and yarn
on your local machine to run the tests in this repo.
A step by step series of examples that tell you have to get a development env running
First you will need to clone the repo here to your local computer.
git clone https://github.com/MrSnickers/Codelab.git
navigate into the repo and install node and yarn, if they are not installed globally. Then install the dependencies for the app with:
yarn install
Running the tests is the only thing this repo can do. That is done with the command
yarn test
the tests also include a linting step with the AirBnB style guide.
- Jest - The testing framework used
- Yarn - Dependency Management
- ESLint - I wouldn't know what to do without it
- The scaffolding of this app comes from Verekia's excellent js-stack-from-scratch