Build production-ready applications with zero configuration.
Built-in caching, 9 database adapters, enterprise features.
import { build } from 'triva';
// Zero configuration needed
const app = new build({
cache: {
type: 'redis',
database: { host: 'localhost' }
}
});
// Define your routes
app.get('/', (req, res) => {
res.json({ hello: 'world' });
});
// Start your server
app.listen(3000);
Stop piecing together packages. Start building.
Pure Node.js with no external dependencies. Fast, secure, and maintainable from day one.
One API, nine adapters. Switch from Redis to MongoDB without changing a line of code.
Rate limiting, logging, error tracking, and auto-redirects included by default.
Full TypeScript support with intelligent type inference. Get autocompletion everywhere.
Battle-tested monitoring, error tracking, and performance features built-in.
Intuitive API, excellent documentation, and helpful error messages that actually help.
Change your database backend without changing your application code.
import { build } from 'triva';
const app = new build({
cache: {
type: 'redis',
database: {
host: 'localhost',
port: 6379
}
}
});
Join developers shipping production applications with Triva.