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/.
Top comments (0)