the directory page for chingu
You must have npm installed in your local machine, node comes with npm so if you want you can install it from Node official website
clone the repo on your local machine thru the command line
git clone https://github.com/Chingu-cohorts/chingu-directory/
and then run npm i
to install all the dependencies needed to run this project
after that if you use a linux OS modify this script inside package.json
and run npm start
, then you can visit localhost:8080 on your browser to see the project.
"scripts": {
"start": "NODE_ENV=development webpack-dev-server",
if otherwise you are using mac OS or a windows OS just open package.json
on your editor and verify the start script matches as follows before running npm start
to see the website on localhost:8080.
"scripts": {
"start": "set NODE_ENV=development & webpack-dev-server",
This repository follows AirBnB Javascript style guide so be sure to check your code before sending a pull request, comments are also required on a lot of stuff, be sure to explain your code so others can work better.