Ecosystem
Seamless Integrations
Hilux is designed to be framework agnostic. Use our official plugins or integrate the core engine directly into your custom pipeline.
Stable
Fastify
Official plugin for the fastest Node.js framework.
example integration
fastify.register(hiluxPlugin, {
redis: { host: '127.0.0.1' },
threshold: 80
});
@gustavoj/hilux/fastify
Stable
Express
Standard middleware for the most popular framework.
example integration
app.use(hiluxMiddleware({
redis: { host: '127.0.0.1' }
}));
@gustavoj/hilux/express
Coming Soon
NestJS
Enterprise-ready Guard and Decorator support.
example integration
@UseGuards(HiluxGuard)
@Controller('users')
export class UsersController {}
@gustavoj/hilux/nestjs
Early Access
Koa
Lightweight middleware for modern async apps.
example integration
app.use(hiluxKoa({
redis
}));
@gustavoj/hilux/koa