Creating the Notes application
Let's start creating the Notes application as before, by using the Express Generator to give us a starting point:
$ mkdir notes $ cd notes $ npm install express-generator@4.x .. output $ ./node_modules/.bin/express --ejs . destination is not empty, continue? [y/N] y create : . create : ./package.json create : ./app.js create : ./public create : ./public/javascripts create : ./public/images create : ./public/stylesheets create : ./public/stylesheets/style.css create : ./routes create : ./routes/index.js create : ./routes/users.js create : ./views create : ./views/index.ejs create : ./views/error.ejs create : ./bin create : ./bin/www install dependencies: $ cd . && npm install run the app: $ DEBUG=notes:* npm start $ npm install .. output $ ls app.js bin node_modules package.json public routes views $ npm uninstall express-generator unbuild express-generator@4.13.1
If you wish, you can...