To get started quickly with Express, you can use the Express generator which will create an application skeleton for you.
First, install it globally with npm:
npm install express-generator -g
You may need to put sudo before this command if you get a "permission denied" error.
Once th...