Hilux
GitHub
Production Setup Wizard

Engine Configurator

1
Framework
2
Storage
3
Protection
4
Finish

What's your framework?

We'll optimize the configuration for your specific tech stack.

import { hiluxPlugin } from '@gustavoj/hilux/fastify'; // Optimized Production Configuration const hiluxConfig = { storage: { type: 'redis', host: process.env.REDIS_HOST || 'localhost', port: 6379 }, thresholds: { suspicious: 45, block: 75 }, modules: { loginProtector: true, geoBlocking: false, deception: true } }; fastify.register(hiluxPlugin, hiluxConfig);