Authentication
JWT authentication with bearer access and cookie foundations.
A clean, tested and documented Fastify + TypeScript foundation for building serious Node.js products without starting from an empty folder.
// Start with architecture, not setup
import { buildApp } from './app';
const app = await buildApp();
await app.listen({
port: 3000,
host: '0.0.0.0'
});
console.log('Oxyide Forge is ready.');
Spend your time on your product instead of rebuilding backend fundamentals.
JWT authentication with bearer access and cookie foundations.
Roles, permissions, policies and server-side authorization guards.
Strict request validation using Zod and Fastify schemas.
Centralized, sanitized API error responses.
Database transaction patterns for atomic operations.
A comprehensive automated test suite.
Modular boundaries, configuration, database, cache and platform foundations give you a clean place to grow.
$ npm install
$ npm run test
✓ 296 tests passed$ npm run build
✓ Build completed