In code-along/express-app/

  1. Initialize a new project and install express

     npm init -y
     npm install --save express
    
  2. Create an index.js containing the following code:

     var express = require('express');
     var app = express();
    
     app.get('/', function (req, res) {
       res.send('Hello World!');
     });
    
     app.listen(3000);
    
  3. node .
  4. Point browser to http://localhost:3000
In code-along/express-app/ Initialize a new project and install express npm init -y npm install --save express Create an index.js containing the following code: var express = require('express'); var app = express(); app.get('/', function (req, res) { res.send('Hello World!'); }); app.listen(3000); node . Point browser to http://localhost:3000 - make sure this bit gets finished! - after this, talk a bit about yesterday - node core - async management - javascript review - ecosystem & NPM - with that groundwork laid, today: build some stuff