Use Tailwind CSS and daisyUI without a local Node build step through the browser CDN for prototypes and simple HTML pages.
Most production Tailwind CSS projects use a build step. That is the right choice when you need bundling, minification, source control around dependencies, and a repeatable deployment.
Sometimes you only need a quick HTML prototype, a demo page, a school project, or a server-rendered page where adding a Node pipeline would slow the work down.
Tailwind CSS provides a browser build for quick use in HTML. daisyUI also publishes CDN files. Together, they let you test Tailwind utilities and daisyUI components without installing packages locally.
<link href="https://cdn.jsdelivr.net/npm/daisyui@5" rel="stylesheet" type="text/css" />
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>Then write normal markup:
<main class="min-h-screen grid place-items-center bg-base-200 p-6">
<button class="btn btn-primary">Hello</button>
</main>The browser setup is excellent for prototypes and learning. For production apps, a build setup gives you stronger control over performance, dependency versions, and generated CSS.
If you want no local Node setup today, read the daisyUI CDN guide. If the project grows, move to the install guide for your framework.
Used by engineers at