all systems operational

Drop a file.
Get a link.

Instantly publish HTML or ZIP files to a unique, shareable URL. No build steps, no configuration, no waiting.

Using an AI agent? Connect it in one line

Drag & drop your file here

or click to browse — .html, .zip, .md accepted

$ *.dropfast.dev · max 50 mb · sign in to publish

50K+

sites published

<2s

avg. publish time

99.9%

uptime SLA

For agents

Connect your agent in one line.

Drop the hosted skill into Claude Code, Cursor, Codex, or any agent and it publishes over the plain REST API — no MCP server, no install package.

Install the skill (one line):

bash
mkdir -p ~/.claude/skills/dropfast && \
  curl -fsSL https://dropfast.dev/dropfast.SKILL.md -o ~/.claude/skills/dropfast/SKILL.md

Or paste this into the chat — hands-off setup:

prompt
Set yourself up to publish HTML artifacts to DropFast over its REST API, so you can hand me stable URLs instead of pasting code into chat.

1. Read https://dropfast.dev/dropfast.SKILL.md and follow it to wire yourself up.
2. Ask me for a DropFast API key — I'll create one at dropfast.dev/dashboard/api-keys. Store it as a secret, never in a committed file.

Then ask me exactly one question, and remember my answer:

  When should I publish artifacts to DropFast?
    1. Every HTML/Markdown artifact I generate.
    2. Only shareable deliverables — plans, prototypes, reports, reviews.
    3. Only when I explicitly ask.

Record the chosen mode in the skill file so the habit persists across sessions.

Per-client setup for Claude Code, Cursor, Codex, Gemini CLI & Junie →

Features

Everything you need.
Nothing you don't.

Instant URLs

Drop a file and get a live link in under two seconds. Every upload becomes a website at dropfast.dev/s/your-name/ — no DNS, no build step, no config. Just a link.

dropfast.dev/s/abc123xy/live

Access control

Public, private, or password-protected. Toggle any time without redeploying — the change is instant.

REST API

Full lifecycle over HTTP — create, update, delete. Drop DropFast into any CI pipeline.

Dashboard

Manage all your sites from one place. Rename, delete, change visibility, or swap the file — one click, no redeploy.

API keys

Generate scoped keys for your team or CI system. Set expiry, limit to create-only, and revoke instantly.

How it works

Live in 30 seconds.

01

Drop

Drag an .html or .zip onto the upload zone. Sign in and publish in seconds.

02

Configure

Give the site a name and set access: public, private, or password-protected. Sensible defaults throughout.

03

Share

Copy the link. Your file is live at a unique, shareable URL. That's the whole product.

Developer API

Wire it into
your pipeline.

The REST API supports the full site lifecycle. Drop DropFast into any CI workflow and ship on every push — no browser required.

Scoped API keys with configurable expiry
Idempotent updates via name slug
Instant delete or visibility toggle via API
terminal

# upload a site

curl -X POST \

https://api.dropfast.dev/v1/sites \

-H "Authorization: Bearer df_sk_••••••••" \

-F "file=@./dist/index.html" \

-F "name=my-demo"

 

# 201 Created

{

"id": "abc123xy",

"url": "https://dropfast.dev/s/abc123xy/",

"accessMode": "public",

"created_at": "2025-05-20T14:32:01Z"

}

Get started

One motion.
Then it's done.

Sign in to publish in seconds — then manage sites, control access, and use the API.

View API docs →