Installation of Dependencies - Atileon/OC-p8 GitHub Wiki

Installation

Once you'd downloaded or clone repo this could be the tree of files


├── css
|  └── index.css
├── index.html
├── js
|  ├── app.js
|  ├── controller.js
|  ├── helpers.js
|  ├── model.js
|  ├── store.js
|  ├── template.js
|  └── view.js
├── license.md
├── package-lock.json
├── package.json
├── README.md
└── test
   ├── ControllerSpec.js
   └── SpecRunner.html

Once you clone or downloaded the Repo type on terminal:

$npm install

This would install Jasmine to Test your code

Next page(The App)