When building API servers in TypeScript with Express and MongoDB, developers often encounter a significant amount of boilerplate code and complex configurations. Tasks such as creating schemas, controllers, and setting up TypeScript, ESM module support, and import aliases can be daunting, especially for beginners. Moreover, existing templates often include advanced features like testing and Docker, which may not be beginner-friendly.
This template aims to simplify the process, providing a minimalistic and easy-to-use structure that allows beginners to focus on development without worrying about configuration and boilerplate code.
- Minimalistic: Simple and easy to understand structure.
- ESM Module Support: Supports modern JavaScript module syntax.
- Import Alias Support: Easy import paths with alias support.
- ENV Config Support: Manage environment variables with ease.
- CORS Setup: Pre-configured CORS support.
- Custom Error Handler Support: Built-in error handling.
- Proper Folder Structure: Organized and scalable project structure.
- Boilerplate Code: Essential code included to get started quickly.
- Development Server Support: Easily run and debug your development server.
Run the following command to clone the template without git history:
npx degit f-z-coder/minimalistic-typescript-express-mongodb-template your-name-project
Open the project in your code editor and add a .env
file in the root folder with the following content:
MONGODB_CONNECTION_URL="your connection string"
Run this command to install all dependencies:
npm install
To start the development server, run:
npm run dev
To build the project, run:
npm run build
To start the server, run:
npm start
Feel free to contribute by adding new features or reporting issues. Your contributions are welcome!
For any inquiries or further information, message me on LinkedIn.