# clone repository
$ git clone [email protected]:voorhoede/code-class-koa.git
# go inside
$ cd code-class-koa
# install dependencies
$ npm install
# koa server http://localhost:3000
# express server http://localhost:3001
$ npm run start1
$ npm run start2
$ npm run start3
- You know a bit about Express
- You know a bit about async / await
See Solutions branch
See reveal.js presentation in the presentation folder
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.