Azura Logo
GitHub

API Reference

Complete reference documentation for the Azura.JS Framework

This section provides detailed documentation for all classes, methods, and interfaces in the Azura.JS Framework. Use the tabs below to navigate between different sections of the API.

AzuraServer

The main server class that handles HTTP requests and manages the application lifecycle.

typescript
import { AzuraServer } from '@atosjs/azura';

// Create a new server instance
const app = new AzuraServer({
  port: 3000,
  host: 'localhost'
});

// Start the server
app.listen();

API Playground

Try it yourself

API Playground

Get a list of users with pagination and filtering options