https://github.com/aduth/express-mongoose-starter
A very bare-bones starter app, using only Express and Mongoose.
https://github.com/aduth/express-mongoose-starter
Last synced: about 2 months ago
JSON representation
A very bare-bones starter app, using only Express and Mongoose.
- Host: GitHub
- URL: https://github.com/aduth/express-mongoose-starter
- Owner: aduth
- Created: 2013-08-23T03:22:03.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2016-11-07T19:35:46.000Z (over 9 years ago)
- Last Synced: 2024-10-10T03:03:57.741Z (over 1 year ago)
- Language: JavaScript
- Size: 141 KB
- Stars: 3
- Watchers: 2
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# express-mongoose-starter
A very bare-bones starter app, using only Express and Mongoose. Essentially, a stripped-down version of [node-express-mongoose-demo](https://github.com/madhums/node-express-mongoose-demo).
Requirements:
* [Node.js](http://nodejs.org/download/) (with npm)
* [MongoDB](http://www.mongodb.org/downloads)
Installation:
```bash
$ git clone git://github.com/aduth/express-mongoose-starter ./my-app
$ cd my-app
$ npm install
```
After installing, start the application using Node:
```bash
$ node server.js
```
You can now view the application in your browser by navigating to [http://localhost:3000/](http://localhost:3000/)