Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 989 Bytes

File metadata and controls

33 lines (22 loc) · 989 Bytes

Koa API Template

A minimalistic Koa.js template for building APIs. This template provides a starting point for creating robust and scalable API projects using Koa, a modern web framework for Node.js.

Features

  • Koa.js: Utilize the power of Koa.js, a lightweight and expressive 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.

Getting Started

  1. Clone the repository:

    git clone https://github.com/kilee1230/koa-api-template.git
    cd koa-api-template
  2. Install dependencies:

    pnpm install
  3. Run the application:

    pnpm start:dev

    The API will be accessible at http://localhost:8000.