@nariajs/platform-fastify
v0.1.2
Published
Fastify adapter for NariaJS
Readme
@nariajs/platform-fastify
Fastify adapter for NariaJS. This package allows you to use Fastify as the underlying HTTP engine for your NariaJS applications.
Installation
npm install @nariajs/platform-fastify fastifyUsage
import { NariaFactory } from "@nariajs/core";
import { FastifyAdapter } from "@nariajs/platform-fastify";
import { AppModule } from "./app.module";
async function bootstrap() {
const app = await NariaFactory.create(AppModule, new FastifyAdapter());
await app.listen(3000);
}