Skip to content

Instantly share code, notes, and snippets.

@paulobunga
Last active January 19, 2019 11:48
Show Gist options
  • Save paulobunga/3bd7da70a0b158e8f616e2930fd2281d to your computer and use it in GitHub Desktop.
Save paulobunga/3bd7da70a0b158e8f616e2930fd2281d to your computer and use it in GitHub Desktop.
express_app_getting_started
// Create our default app file
touch app.js
// This will generate a package.json file inside our directory will all the default options set.
npm init -y
// This will install express and express-handlebars
npm install --save express express-handlebars
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment