A minimalistic Express.js template for building APIs. This template provides a starting point for creating robust and scalable API projects using Express.js, a popular web framework for Node.js.
- Express.js: Utilize the power of Express.js, a flexible and minimalist web framework for Node.js.
- Structured Code: Follows a well-organized directory structure for easy scalability and maintainability.
- ES6+: Write code using modern JavaScript features for a cleaner and more efficient codebase.
- Middleware: Includes essential middleware for handling common tasks like CORS, body parsing, and error handling.
-
Clone the repository:
git clone https://github.com/kilee1230/express-api-template.git cd express-api-template
-
Install dependencies:
pnpm install
-
Run the application:
pnpm start:dev
The API will be accessible at
http://localhost:8000
.