Dwex Logo

Getting Started

Start building with Dwex in minutes

Overview

Get up and running with Dwex quickly. This section covers installation, creating your first application, and understanding project structure.

What You'll Learn

  • Installation - Set up Dwex with Bun and configure TypeScript
  • First App - Build a complete REST API with CRUD operations
  • Project Structure - Organize your code for maintainability and scalability
  • Core Concepts - Understand modules, controllers, and dependency injection

Prerequisites

Before starting, ensure you have:

  • Bun v1.0.0 or higher installed
  • Basic TypeScript knowledge
  • Familiarity with REST APIs and HTTP concepts

Quick Start

The fastest way to start:

bun create dwex my-app
cd my-app
bun install
bun run src/main.ts

Visit http://localhost:3000 to see your app running.

Next Steps