Project Structure API
Complete project template for building RESTful API with Typescript
Report Bug
ยท
Request Feature
Table of Contents
About The Project
Building project with standardized structure could save much our time. We could focus on business process without considering too much on project structure. On the other hand, a good project structure should be clean, nice refactored, and easy to maintain.
Here's why:
- Your time should be focused on creating something amazing. A project that solves a problem and helps others.
- You shouldn't be doing the same tasks over and over like structuring project
- You should implement dry principles to the rest of your life
Of course, no one template will serve all projects since your needs may be different. So I'll be adding more in the near future. You may also suggest changes by forking this repo and creating a pull request or opening an issue. Thanks to all the people have contributed to expanding this project template!
Built With
This project structure is built using
Features
- Everything is modular and unit testable
- Typescript everything
- Project API structures with routes, controllers, models, repositories, middlewares, and services
- Centralized configuration input validator
Folder Structure
โโโ .husky/ # Pre-commit config for lint staged
โโโ docs/ # Swagger API docs
โโโ src/ # All application source
โโโโโ @types/ # Type definition for modules
|
โโโโโ api/
โโโโโโโ controllers/ # Define all controllers
โโโโโโโ middlewares/ # Define all middlewares
โโโโโโโ models/ # Define all sequelize models
โโโโโโโ repositories/ # Define all repositories
โโโโโโโ routes/
โโโโโโโโโ v1/ # Define all v1 routes
โโโโโโโ services/ # Define all services
โโโโโโโ types/ # Define all input types
|
โโโโโ config/
โโโโโโโ appConfig.ts # Define app configuration
|
โโโโโ constants/ # Define all constants
โโโโโ database/ # Define database connection and sync tables
โโโโโ utils/ # Define reusable libs
โโโโโ server.ts # Create express config
โโโโโ index.ts # ENTRYPOINT - Start server
|
โโโ ...
Getting Started
To start project, just clone this repo or Use this template
Prerequisites
Before installation, make sure you have the following prerequisites
- NPM
npm install npm@latest -g
- Postgresql server
Installation
- Clone the repo or simply select use this template
git clone https://github.com/arifintahu/project-structure-api.git
- Install NPM packages
npm ci
- Create
.env
file in main directory - Copy and customize envs from
.env.example
- Test and build the project
npm run build
- Sync database tables
npm run sync-db
- Run the server
npm run start
- Access swagger docs from
localhost:3001/docs/v1
Contributing
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/feature-name
) - Commit your Changes (
git commit -m 'Add some feature-name'
) - Push to the Branch (
git push origin feature/feature-name
) - Open a Pull Request