Build in Record Time
Pre-built authentication, validation, and security. Focus on your business logic, not boilerplate.
Production-ready backends with Pubflow's trust-based architecture
Flowfull is part of the Pubflow ecosystem - a complete architecture for modern applications:
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β PUBFLOW ARCHITECTURE β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
β β
β ββββββββββββββββ ββββββββββββββββ βββββββββββ
β β FLOWLESS β ββββΆ β FLOWFULL β ββββΆ β CLIENT ββ
β β β β β β ββ
β β β’ Auth β β β’ Your APIs β β β’ Reactββ
β β β’ Sessions β β β’ Business β β β’ Next ββ
β β β’ Users β β β’ Database β β β’ RN ββ
β ββββββββββββββββ ββββββββββββββββ βββββββββββ
β pubflow.com This is YOU! Your App β
β β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββπ Flowless - Core authentication backend (deployed on Pubflow)
β‘ Flowfull - Your custom backend (this documentation)
π¨ Flowfull-Client - Your frontend application
Using flowfull-node (official Node.js/TypeScript starter kit):
import { Hono } from 'hono';
import { requireAuth } from './lib/auth/middleware';
const app = new Hono();
// Protected route - automatically validated with Flowless
app.get('/api/profile', requireAuth(), async (c) => {
const userId = c.get('user_id'); // β
Authenticated user
// Your business logic
const profile = await db.getProfile(userId);
return c.json({ profile });
});
// That's it! Authentication handled by PubflowIf you need assistance, professional support, or want us to build your backend for you:
Built with β€οΈ by the Pubflow team