/ToDo_MEAN

A ToDo list with Azure MongoDB and tutorial for deploying to Azure web app on linux

Primary LanguageJavaScriptMIT LicenseMIT

Node Todo App

This demo app is adopted from Scott's tutorial at https://scotch.io/tutorials/creating-a-single-page-todo-app-with-node-and-angular. The main objective for this demo is to show the following:

  1. How to deploy nodejs app to Azure
  2. Azure MongoDB service can work with existing MongoDB and driver (mongoose in this case).

Requirements

Installation

  1. Clone the repository: git clone https://github.com/harrchen/ToDo_MEAN.git
  2. Install the application: npm install
  3. Place your own Azure DocumentDB (with MongoDB API) or MongoDB URI in config/database.js
  4. Start the server: npm start
  5. View in browser at http://localhost:3000

Tutorial Series

This repo is modified from the Node Todo Tutorial Series on scotch.io