Express HTTP adapter for ExpressoTS. Connects the framework core to the Express.js server engine.
Documentation Β· Getting Started Β· Project Board Β· Community
npm i @expressots/adapter-expressThis adapter bridges ExpressoTS Core and Express.js. It provides the HTTP server implementation, route registration, middleware pipeline, and the App class that wires everything together. Install it alongside @expressots/core to run ExpressoTS on Express.
import { ExpressAdapter } from "@expressots/adapter-express";
const app = await AppFactory.create(App, ExpressAdapter);
await app.listen(3000, "development");For guides, API reference, architecture patterns, and examples visit doc.expresso-ts.com.
Welcome to the ExpressoTS community. See the Contributing Guide for how to get involved.
MIT. See LICENSE.