August 2016
Intermediate to advanced
376 pages
6h 33m
English
As we explained in previous chapters, the packages.json file is the heart of the application. The steps to create the necessary file are as follows:
chapter-03.package.json and save it in the chapter-03 folder with the following code: { "name": "chapter-03", "description": "Build a multimedia Application with Node.js", "license": "MIT", "author": { "name": "Fernando Monteiro", "url": "https://github.com/newaeonweb/node-6-blueprints" }, "repository": { "type": "git", "url": "https://github.com/newaeonweb/node-6-blueprints.git" }, "keywords": [ "MVC", "Express Application", "Expressjs", "Expressjs images upload", "Expressjs video upload" ], "version": "0.0.1", "private": true, ...