launch-express-app
v1.8.0
Published
A quick and minimalistic way to get started with express.js server-side development
Downloads
8
Readme
Launch Express App
A quick and minimalistic way to get started with express.js server-side development
Quick Overview
Follow this command to get started
npx launch-express-app my-app
cd my-app
npm install
Running Server
To run server, run the following command
npm run start-dev
Folder Structure
my-app
├── bin
│ ├── www.js
├── db
│ ├── mongodb.js
├── middlewares
│ ├── userValidator.js
├── public
│ ├── image
│ ├── stylesheets
│ ├── style.css
│ └── home.html
├── routes
│ ├── index.js
│ ├── users.js
├── index.js
└── package.json
Contributing
Contributions are always welcome!
Create pull requests to contribute.