YelpCamp is an Express/MongoDB application from the Web Developer Bootcamp course, by Colt Steele.
- Node.js
- MongoDB
- Git
To install YelpCamp, open your terminal and clone this repository (you do not need to type the dollar sign):
$ git clone https://github.com/feute/yelp-camp
The project will be available in the directory where you ran the previous command.
Change your current working directory and run npm install
:
$ cd yelp-camp
$ npm install
You can start the server by running the node
command directly on app.js
:
$ node app.js
Alternatively, you can run the start
script with the npm command, found in package.json
:
$ npm start
The app will be available at: localhost:3000
.