惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

D
Docker
IT之家
IT之家
Microsoft Security Blog
Microsoft Security Blog
博客园 - 司徒正美
云风的 BLOG
云风的 BLOG
P
Proofpoint News Feed
D
DataBreaches.Net
B
Blog RSS Feed
博客园_首页
The GitHub Blog
The GitHub Blog
I
InfoQ
L
LangChain Blog
G
Google Developers Blog
M
MIT News - Artificial intelligence
美团技术团队
腾讯CDC
V
Visual Studio Blog
aimingoo的专栏
aimingoo的专栏
博客园 - 聂微东
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Apple Machine Learning Research
Apple Machine Learning Research
A
About on SuperTechFans
博客园 - 三生石上(FineUI控件)
博客园 - 叶小钗

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
How to Share Claude HTML Artifacts as a Live Preview URL
Neurobin · 2026-06-25 · via DEV Community

Neurobin

Claude is surprisingly good at producing useful HTML artifacts: quick dashboards, landing page mockups, product one-pagers, data reports, UI prototypes, and internal tools.

The awkward part usually comes after the HTML is generated.

You want to send it to someone, but the artifact lives in a chat, a local file, or a temporary preview. Screenshots lose interactivity. Copying code into a message is hard to review. Asking someone to download a file and open it locally adds friction.

For many small HTML outputs, the missing step is simple:

Turn the generated HTML into a real browser URL.

This article walks through a practical workflow for sharing Claude HTML artifacts as live previews.

If you want a focused version of this workflow, I also wrote a short guide here: Share Claude HTML artifacts as a live URL.

The problem with local HTML artifacts

When Claude generates HTML, you usually get one of three things:

  1. A single self-contained HTML file
  2. A small static folder with CSS, JavaScript, and image assets
  3. A source project that needs to be built first, such as Vite, Next.js, Astro, or another frontend setup

These are not the same deployment target.

A single HTML file can often be published directly. A static folder can be hosted as-is if it already contains the final assets. A source project usually needs a build command first.

The most common mistake is trying to share the source project instead of the built artifact.

For example, this is usually not what you want to publish:

my-demo/
  package.json
  src/
  node_modules/
  vite.config.ts

This is much closer to what you want:

dist/
  index.html
  assets/
    app.css
    app.js

That distinction matters because a browser can load index.html, CSS, JavaScript, images, and static assets. It cannot run your local build system for the viewer.

What a good preview workflow should do

A good preview workflow for AI-generated HTML should be boring in the best possible way:

  1. Take the exact artifact Claude generated or built
  2. Publish it to a public HTTPS URL
  3. Preserve linked CSS, JavaScript, images, and fonts
  4. Let reviewers open it without installing anything
  5. Make it easy to replace the preview when the artifact changes

That workflow works especially well for:

  • AI-generated reports
  • HTML prototypes
  • Landing page drafts
  • Client demos
  • Small internal tools
  • Static examples for docs
  • UI states that are easier to review in a browser than in a screenshot

Option 1: Paste or upload the HTML

If Claude generated one self-contained HTML file, the fastest path is to paste or upload the file and get a live URL.

This works best when the file includes everything it needs:

<!doctype html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <title>Revenue Dashboard Preview</title>
    <style>
      body {
        font-family: system-ui, sans-serif;
        margin: 2rem;
      }
    </style>
  </head>
  <body>
    <h1>Revenue Dashboard</h1>
    <p>This is a generated static preview.</p>
  </body>
</html>

This is ideal for quick review loops because there is no repository, no DNS, no build pipeline, and no app server.

If you are using PreviewShip, the upload flow is built for this kind of artifact:

Publish AI-generated HTML online

Option 2: Publish from the command line

If Claude Code or another local coding agent generated a file in your workspace, the command line can be faster than using a browser UI.

For example:

npx previewship deploy ./report.html

Or, if you want a machine-readable result for scripting:

npx previewship deploy ./report.html --json

A CLI-based workflow is useful when you repeatedly generate variations:

npx previewship deploy ./experiments/pricing-page-v3.html
npx previewship deploy ./reports/weekly-growth.html
npx previewship deploy ./demos/onboarding-flow.html

The important thing is that the deployed file or folder should already be browser-ready.

For a built frontend project, that usually means:

npm run build
npx previewship deploy ./dist

The exact output folder depends on your framework:

Vite      -> dist/
Astro     -> dist/
Next.js   -> out/ if using static export
SvelteKit -> build/ depending on adapter

Option 3: Let Claude Code publish the preview

If you are working inside Claude Code, Cursor, or another agentic coding tool, you can also make publishing part of the agent workflow.

A typical prompt can be:

Build the static preview, deploy the browser-ready output, and give me the public URL.

This works best when the tool has a clear deployment command or MCP integration available.

For PreviewShip, the MCP docs are here:

PreviewShip MCP docs

That kind of setup is useful because the agent can:

  • Generate the HTML
  • Build the static output if needed
  • Deploy the result
  • Return a URL for review

You still need to be explicit about what should be deployed. If the agent built a Vite app, ask it to deploy dist/, not the raw source directory.

A small checklist before sharing the URL

Before sending the preview to someone else, check these details:

  • The page has a real <title>
  • The layout works on desktop and mobile
  • External images and fonts load correctly
  • Buttons and links do not point to localhost
  • The page does not expose private API keys or internal data
  • The artifact is the built output, not the source project
  • The preview URL opens in a private browser window

That last check is underrated. If it works in a private window, it is much more likely to work for the person receiving the link.

When this workflow is better than a full deployment

This live-preview workflow is not a replacement for production hosting.

It is best for artifacts that need fast review:

  • "Can you check this report?"
  • "Does this landing page copy make sense?"
  • "Is this generated UI close to what we want?"
  • "Can the client open this without installing anything?"
  • "Can I share this prototype in a Slack thread?"

For long-lived production apps, use your normal deployment pipeline.

For throwaway or review-focused HTML, a lightweight preview URL is usually enough.

Final thought

Claude can generate the first version of an HTML artifact quickly. The real productivity gain comes when the review loop is just as fast.

If the output can be opened as a URL, people can comment on the actual experience instead of debugging file sharing.

That small shift makes AI-generated HTML much easier to use in real work.