# clone repository
$ git clone [email protected]:voorhoede/code-class-express.git
# go inside
$ cd code-class-express
# install dependencies
$ npm install
# start server http://localhost:9777
$ npm start
See Solutions branch
Code class Express presentation (PDF)
Done? You might like these code classes next:
Node.js's built-in inspector (node --inspect
) works great for debugging Node.js with Chrome DevTools. Nodemon however restarts our Node.js server on every code change creating a new URL for debugging. To have your DevTools automatically reconnect with your new app you can use the NIM (Node Inspector Manager) Chrome extension.