Drop
Point flypod at a folder or build output. No project setup, no account prompt.
$ npx flypod ./dist Zero auth. One command. Live URL.
flypod is the deploy primitive for agents and humans who do not have time for project setup, account gates, or ceremony.
npx flypod ./dist One folder in. One preview URL out. No dashboard to babysit.
From folder to preview
Three steps, all visible in your terminal. No dashboard to log into, no pipeline to configure — just the path from a folder to a live URL.
Point flypod at a folder or build output. No project setup, no account prompt.
$ npx flypod ./dist flypod packs the directory, stores a version, and prepares the live preview.
-> Uploading 3.2 MB
-> Building
-> Deploying A live URL lands in stdout. Share it, test it, or hand it back to the agent loop.
Live URL: https://ab12cd34.flypod.dev Why agents keep it around
Anonymous deploys are isolated and short-lived. Perfect for previews, demos, and experiments.
TTL: 14 days Every deploy is versioned, so a previous build is one call away.
flypod rollback Optional screenshot, console, failed request, and DOM summaries after deploy.
render.status = ok Run your own instance on Cloudflare Workers with storage adapters for your stack.
bunx wrangler deploy CLI and library
Use the CLI for one-shot deploys, or call the library when your agent already has the files in memory.
$ npx flypod ./dist
stdout: https://ab12cd34.flypod.dev
stderr: manage token: shown once import { deploySite, collectDist } from "flypod";
const files = await collectDist("./dist");
const result = await deploySite({ files });
console.log(result.url); No account. No config. Just the deploy loop, moving.