https://github.com/scotch-io/node-todo
A simple Node/MongoDB/Angular todo app
https://github.com/scotch-io/node-todo
Last synced: 5 days ago
JSON representation
A simple Node/MongoDB/Angular todo app
- Host: GitHub
- URL: https://github.com/scotch-io/node-todo
- Owner: scotch-io
- License: mit
- Created: 2013-10-30T01:10:54.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2023-05-22T22:51:50.000Z (almost 2 years ago)
- Last Synced: 2025-04-07T21:14:29.091Z (about 1 month ago)
- Language: JavaScript
- Homepage: https://scotch.io/tutorials/creating-a-single-page-todo-app-with-node-and-angular
- Size: 59.6 KB
- Stars: 722
- Watchers: 59
- Forks: 1,402
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
- License: license
Awesome Lists containing this project
README
# Node Todo App
A Node app built with MongoDB and Angular. For demonstration purposes and a tutorial.
Node provides the RESTful API. Angular provides the frontend and accesses the API. MongoDB stores like a hoarder.
## Requirements
- [Node and npm](http://nodejs.org)
- MongoDB: Make sure you have your own local or remote MongoDB database URI configured in `config/database.js`## Installation
1. Clone the repository: `git clone [email protected]:scotch-io/node-todo`
2. Install the application: `npm install`
3. Place your own MongoDB URI in `config/database.js`
3. Start the server: `node server.js`
4. View in browser at `http://localhost:8080`## Tutorial Series
This repo corresponds to the Node Todo Tutorial Series on [scotch.io](http://scotch.io)
Each branch represents a certain tutorial.
- tut1-starter: [Creating a Single Page Todo App with Node and Angular](https://scotch.io/tutorials/creating-a-single-page-todo-app-with-node-and-angular)
- tut2-organization: [Application Organization and Structure](https://scotch.io/tutorials/node-and-angular-to-do-app-application-organization-and-structure)
- tut3-services: [Controllers and Services](https://scotch.io/tutorials/node-and-angular-to-do-app-controllers-and-services)Happy Todo-ing!
