Skip to Content
Node.js 6.x Blueprints
book

Node.js 6.x Blueprints

by Fernando Monteiro
August 2016
Intermediate to advanced
376 pages
6h 33m
English
Packt Publishing
Content preview from Node.js 6.x Blueprints

Creating the book controller

We will follow the same generator code pattern that the generator suggests; one of the advantages of using this generator is that we already have the MVC pattern at our disposal.

Tip

Remember, you can download the example files from the Packpub website, or directly from the GitHub book repository.

  1. Create a file called books.js inside the controllers folder.
  2. Add the following code to the book.js file:
     var express = require('express'), router = express.Router(), schema = require('../models/book'), Picture = schema.models.Picture, cloudinary = require('cloudinary').v2, fs = require('fs'), multipart = require('connect-multiparty'), multipartMiddleware = multipart(); module.exports = function (app) { app.use('/', router); }; ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Learning Node.js Development

Learning Node.js Development

Andrew Mead
VB.NET Core Classes in a Nutshell

VB.NET Core Classes in a Nutshell

Budi Kurniawan, Ted Neward
Your First Week With Node.js, 2nd Edition

Your First Week With Node.js, 2nd Edition

James Hibbard, Craig Buckler, Mark Brown, Nilson Jacques, James Kolce, Paul Orac, M. David Green, Florian Rappl

Publisher Resources

ISBN: 9781785888434Supplemental Content