Express' application generator using the ES6 format.
$ npm install -g expressv
To start create a folder and cd into the folder and follow the guidelines below to create application using this express generator. The application recommend to use yarn
but you can equally use npm
without any difficulties.
Create the app:
$ expressv <<app name>>
<<app name>>
indicate the application name. If not provided the folder name is used by default
Install dependencies:
$ yarn install
Start your Express.js app at http://localhost:3000/
:
$ yarn dev
The idea of this application was taken from expressjs/generator. I do hereby acknowledge and are grateful to them for their contributions to open source.