Skip to content

FlowfullBuild Backends in Record Time

Production-ready backends with Pubflow's trust-based architecture

Flowfull

🌟 The Pubflow 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   β”‚
β”‚                                                          β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

The Three Layers ​

  1. πŸ” Flowless - Core authentication backend (deployed on Pubflow)

    • Handles user registration, login, sessions
    • Validates all authentication requests
    • Managed service - no setup required
  2. ⚑ Flowfull - Your custom backend (this documentation)

    • Connects to Flowless for authentication
    • Implements your business logic
    • Stateless and horizontally scalable
  3. 🎨 Flowfull-Client - Your frontend application

    • React, Next.js, React Native, or any framework
    • Connects to your Flowfull backend
    • Uses Pubflow authentication seamlessly

🎯 Quick Example ​

Using flowfull-node (official Node.js/TypeScript starter kit):

typescript
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 Pubflow

πŸš€ Ready to Build? ​

πŸ’¬ Community & Support ​

🀝 Need Professional Help? ​

If you need assistance, professional support, or want us to build your backend for you:

  • 🌐 Notside.com - Technology firm specializing in Pubflow implementations
  • πŸ“§ Email: contact@notside.com
  • πŸ’Ό Services: Custom backend development, consulting, and enterprise support

Built with ❀️ by the Pubflow team

Released under the MIT License.