Skip to main content

KoalaTs

Welcome to KoalaTs. KoalaTs is crafted for backend developers who want a clear starting point for controllers, routing, request handling, response handling, and configuration.

Getting Started

To get started, you can use the KoalaTs CLI to generate a new project:

npx @koala-ts/cli create my-app

The command generates a new project in the my-app directory.

Then navigate to the project directory and start the server:

cd my-app
npm install
npm run start

Next Steps

  • Learn how to configure your application in Configuration.
  • Define your first endpoints in Routing.
  • Read how request data is exposed in Request.
  • Control response output in Response.