package.json
Let's start by creating a root project folder called vision
and add a package.json
file to it: ./package.json
:
{ "name": "chapter-1", "version": "0.0.0", "private": true, "scripts": { "start": "node app.js" } "dependencies": { "express": "3.x" } }
Tip
Downloading the example code
You can download the example code files for all Packt books you have purchased from your account at http://www.packtpub.com. If you purchased this book elsewhere, you can visit http://www.packtpub.com/support and register to have the files e-mailed directly to you.