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
Installation
- Clone the repository:
git clone git@github.com:scotch-io/node-todo
- Install the application:
npm install
- Start the server:
node server.js
- View in browser at
http://localhost:8080
Installation
Run tests
- Install phantomjs
- Install grunt-cli: npm install grunt-cli -g
- Running tests in a browser: Run
grunt jasmine:server
. Tests should be available at http://localhost:8888 - Running tests in headless mode: Run
grunt jasmine:server:ci
Tutorial Series
This repo corresponds to the Node Todo Tutorial Series on scotch.io
Each branch represents a certain tutorial.
- tut1-starter: Creating a Single Page Todo App with Node and Angular
- tut2-services: Coming Soon
- tut3-auth: Coming Soon
- tut4-sockets: Coming Soon
- tut5-redis: Coming Soon
- tut6-organization: Coming Soon
Happy Todo-ing!