@sudarshan7672/express-start-kit
v1.0.0
Published
CLI tool for generating an Express js starter file structure
Downloads
67
Maintainers
Readme
Express Starter Kit
This is a simple starter kit for building Express.js applications.
Getting Started
- Clone this repo.
- Run
npm install
to install dependencies. - Run
npm start
to start the server.
File Structure
server.js
: The entry point of the application.- `controllers/": Controllers to handle business logic.
- `routes/": Define the routes for the application.
- `models/": Models for MongoDB or other databases.
- `middleware/": Express middlewares.