Hand Nullpoint an HTML document and it hands back a public HTTPS link. No build step, no config file, nothing to wait for.
# one request, no project setup $ curl -X POST https://api.nullpoint.dev/v1/pages \ -H "Authorization: Bearer $NP_TOKEN" \ -F html=@index.html → 201 Created (312 ms) { "url": "https://quiet-fox-41.nullpoint.dev", "region": "fra1", "ttl": "48h", "status": "live" }
Most of what you deploy is thrown away in an hour — a mockup for a client, a repro for a bug, a page an agent just generated. Nullpoint optimises for that case instead of pretending it's production.
Every page carries a TTL between 1 and 168 hours. It expires on its own, so nothing rots in your account.
A single self-contained document is the unit of deploy. Inline your CSS and JS and you're done — no bundler in the loop.
If a throwaway turns out to matter, promote it to a stable subdomain with a persistent TTL. Same URL semantics.
Pick a lowercase DNS label, 3–32 chars. That label becomes the host, so it's readable in a Slack message.
The body is your HTML. It lands in object storage and propagates to the edge before the response returns.
The URL is live on the first request — no cold start, no "deploying…" screen to babysit.