PostPipe
TutorialGuide

Choosing Your Path

Learn which PostPipe integration is right for your project.

    PostPipe Imagine Cup
    DocsChoosing Your Path

    ๐Ÿงญ Choosing Your Path

    PostPipe offers two primary ways to integrate backend logic into your projects. Choosing the right one depends on your current setup and goals.

    ๐Ÿ“Š Comparison Table

    FeatureStatic (Connector)Dynamic (CLI)
    Best ForExisting apps, static sitesNew projects, Next.js apps
    Setup Time5-10 minutes2 minutes (Scaffolding)
    ControlHigh (Your own DB/Server)Full (Generated Code)
    InfrastructureYour Server + DBReady-to-use Modules
    CustomizationVia the Connector codeDirect code editing
    PricingFree (Self-hosted bridge)Free (Standard Modules)

    ๐Ÿ”Œ Static: The Connector

    Use this if you already have a database and a frontend, but you want to securely ingest data (like form submissions) without writing complex API routes or handling SMTP yourself.

    The Workflow:

    1. Deploy the PostPipe Connector (a small Express bridge).
    2. Configure your DB credentials in the Connector's environment.
    3. Link the Connector URL in your PostPipe Dashboard.
    4. Embed a simple script or use our Fetch API.

    Read Static Setup Guide


    ๐Ÿš€ Dynamic: CLI Components

    Use this if you are starting a new Next.js project and want to "borrow" professional-grade backend logic for Auth, Payments, or Databases.

    The Workflow:

    1. Run npx create-postpipe-app@latest in your terminal.
    2. Choose the components you need (e.g., Auth, Dashboard).
    3. The CLI scaffolds a complete, ready-to-use Next.js application.
    4. Deploy to Vercel/Netlify instantly.

    Read CLI Components Guide


    ๐Ÿค” Still Unsure?

    If you want to keep your existing server, go with the Static Connector. If you want to build something brand new with the best practices already baked in, go with the CLI.

    Back to Introduction

      PostPipe | Choosing Your Path - PostPipe