Last active
January 19, 2019 11:48
-
-
Save paulobunga/3bd7da70a0b158e8f616e2930fd2281d to your computer and use it in GitHub Desktop.
express_app_getting_started
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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