Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 594 Bytes

README.md

File metadata and controls

32 lines (22 loc) · 594 Bytes

React Counter

A simple counter created with React, Express and MongoDb

Instalation

You need to have a local Mongo database listening to port 27017
Visit if you need help getting setup https://docs.mongodb.com/manual/installation/

$ git clone https://github.com/cloutierMat/reactCounter.git
$ cd reactCounter

You will now be in the project. Note that backend and frontend need to be initialized separately.

First start the server

$ cd backend
$ npm install
$ npm start

You can now start the React server

$ cd ../frontend
$ npm install
$ npm start