Skip to content

Commit 4a355ce

Browse files
author
Chris Sevilleja
committed
updating dependencies. close scotch-io#18
1 parent 62c9285 commit 4a355ce

File tree

2 files changed

+15
-16
lines changed

2 files changed

+15
-16
lines changed

README.md

+4-5
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,13 @@ Node provides the RESTful API. Angular provides the frontend and accesses the AP
77
## Requirements
88

99
- [Node and npm](http://nodejs.org)
10+
- MongoDB: Make sure you have your own local or remote MongoDB database URI configured in `config/database.js`
1011

1112
## Installation
1213

1314
1. Clone the repository: `git clone [email protected]:scotch-io/node-todo`
1415
2. Install the application: `npm install`
16+
3. Place your own MongoDB URI in `config/database.js`
1517
3. Start the server: `node server.js`
1618
4. View in browser at `http://localhost:8080`
1719

@@ -21,11 +23,8 @@ This repo corresponds to the Node Todo Tutorial Series on [scotch.io](http://sco
2123

2224
Each branch represents a certain tutorial.
2325
- tut1-starter: [Creating a Single Page Todo App with Node and Angular](http://scotch.io/tutorials/javascript/creating-a-single-page-todo-app-with-node-and-angular)
24-
- tut2-services: Coming Soon
25-
- tut3-auth: Coming Soon
26-
- tut4-sockets: Coming Soon
27-
- tut5-redis: Coming Soon
28-
- tut6-organization: Coming Soon
26+
- tut2-organization: [Application Organization and Structure](https://scotch.io/tutorials/node-and-angular-to-do-app-application-organization-and-structure)
27+
- tut3-services: [Controllers and Services](https://scotch.io/tutorials/node-and-angular-to-do-app-controllers-and-services)
2928

3029
Happy Todo-ing!
3130

package.json

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
2-
"name" : "node-todo",
3-
"version" : "0.0.1",
4-
"description" : "Simple todo application.",
5-
"main" : "server.js",
6-
"author" : "Scotch",
7-
"dependencies" : {
8-
"express" : "~4.13.4",
9-
"mongoose" : "~3.8.13",
10-
"morgan" : "~1.1.1",
11-
"body-parser" : "~1.4.3",
12-
"method-override" : "~2.1.1"
2+
"name": "node-todo",
3+
"version": "0.0.1",
4+
"description": "Simple todo application.",
5+
"main": "server.js",
6+
"author": "Scotch",
7+
"dependencies": {
8+
"body-parser": "^1.4.3",
9+
"express": "^4.13.4",
10+
"method-override": "^2.1.3",
11+
"mongoose": "^4.4.12",
12+
"morgan": "^1.1.1"
1313
}
1414
}

0 commit comments

Comments
 (0)