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.
- Node and npm
- MongoDB: Make sure you have your own local or remote MongoDB database URI configured in
config/database.js
- Clone the repository:
git clone [email protected]:scotch-io/node-todo - Install the application:
npm install - Place your own MongoDB URI in
config/database.js - Start the server:
node server.js - View in browser at
http://localhost:8080
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-organization: Application Organization and Structure
- tut3-services: Controllers and Services
Happy Todo-ing!
#===============================================# #===============================================#
Run before starting server : >"C:\Program Files\MongoDB\Server\3.4\bin\mongod.exe" module.exports = { remoteUrl : 'mongodb://sankar:[email protected]:27017,cluster0-shard-00-01-jn6u4.mongodb.net:27017,cluster0-shard-00-02-jn6u4.mongodb.net:27017/admin?ssl=true&replicaSet=Cluster0-shard-0&authSource=admin', localUrl: 'mongodb://localhost/admin' };
#===============================================# #===============================================#
