https://github.com/kdchang/nodejs-express-blog-tutorial
This is a Node.js blog tutorial uses the Express Framework
https://github.com/kdchang/nodejs-express-blog-tutorial
Last synced: 4 months ago
JSON representation
This is a Node.js blog tutorial uses the Express Framework
- Host: GitHub
- URL: https://github.com/kdchang/nodejs-express-blog-tutorial
- Owner: kdchang
- Created: 2014-06-24T02:01:47.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-06-24T15:02:11.000Z (over 11 years ago)
- Last Synced: 2024-10-28T05:35:05.552Z (about 1 year ago)
- Language: JavaScript
- Size: 153 KB
- Stars: 5
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
nodejs-express-blog-tutorial
============================
This is a Node.js blog tutorial uses the Express Framework
#Prerequisites
1. Node.js
2. Express v3
3. mongodb
4. mongoose
#Run
node app.js
check in the browser: http://localhost:3000
#MongoDB
> use nodejs-express-blog-tutorial
switched to db nodejs-express-blog-tutorial
> show collections
members
system.indexes
> db.members.find()
{ "Username" : "mozilla", "Password" : "123", "_id" : ObjectId("53a948c48fd3960000cad9a7"), "__v" : 0 }
>