1.1.2 • Published 1 year ago

create-express-structure v1.1.2

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year ago

create express structure

Create Express Structure

This is a package created for node js developers working with express framework to create web backend along with mongodb as database.

This package will help you create the basic structure that developer need to create as a start.

Quick Start

Install and create folder structure

  npx create-express-app

Start the server

  npm start

Folder Structure

Your express folder structure will be created in the following format

├── config
│   ├── db.js
├── src
│   ├── controllers
│   │   ├── userController.js
│   ├── middlewares
│   │   ├── userValidator.js
│   ├── models
│   │   ├── userModel.js
│   ├── router
│   │   ├── userRouter.js
│   │   ├── rootRouter.js
│   ├── schemas
│   │   ├── userSchema.js
│   ├── utils
│   │   ├── catchAsyncErrors.js
│   │   ├── commonFunctions.js
│   │   ├── helperFunction.js
│   │   └── responseMessages.js
├── public
├── app.js
├── server.js
├── .env
├── .gitignore
├── package.json
└── README.md

Contributing

Contributions are always welcome!

1.1.2

1 year ago

1.1.1

1 year ago

1.0.7

1 year ago

1.0.6

1 year ago

1.0.5

1 year ago

1.0.4

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago