August 2014
Intermediate to advanced
300 pages
6h 9m
English
We'll start by building the server-side section of the app. We'll build a series of routes that will provide Create, Read, Update, Delete (CRUD) operations on our MongoDB database. We will expose these as REST APIs.
Let's write our models and custom routes into a separate route file to keep things clean.
We first start by loading the mongoose library and establishing a connection to the angcms database. We add the following highlighted code in the angcms/app.js file:
var app = express(); var mongoose = require('mongoose'); mongoose.connect('mongodb://localhost/angcms'); var db = mongoose.connecetion;
For this application, we are going to need two schemas: the Pages schema and the Admin Users ...