How To Quickly Generate An Express App Skeleton And Then Edit It
Yogeswari Narayasamy
Posted on September 23, 2019
First you must install the express-generator by typing:
npm install -g express-generatorNext run the following command to create an express app with the ejs engine:
express --view=ejs kikucare
kikucare is the name of the app we're creating.
Go into the newly created app folder by typing:
cd kikucare/Install all dependencies by typing:
npm installNext start the app by typing the command:
DEBUG=kikucare:* npm startYou can now view the app on the browser by going to the address http://localhost:3000/.
Let's make a simple change to what's displayed on the browser!
💖 💪 🙅 🚩
Yogeswari Narayasamy
Posted on September 23, 2019
Join Our Newsletter. No Spam, Only the good stuff.
Sign up to receive the latest update from our blog.