Skip to main content

FluxKit

Open-source infrastructure toolkit for developers and AI agents

npm install @fluxkitdev/core

Simple, Composable, Powerful

app.ts
import { FluxKit } from "@fluxkitdev/core";
import { auth } from "@fluxkitdev/auth";
import { messaging } from "@fluxkitdev/messaging";

// Initialize FluxKit with the wires you need
const app = new FluxKit({
wires: [auth(), messaging()],
database: { uri: process.env.MONGODB_URI },
});

// Start the server - REST APIs are automatically mounted
await app.start({ port: 3000 });

// All wires are also available programmatically
await app.messaging.email.send({
to: "user@example.com",
subject: "Welcome!",
body: "Thanks for joining.",
});

Ready to Build?

Get started in minutes with the installation guide.