Newsletter
Join the Community
Subscribe to our newsletter for the latest news and updates
Scaffold a Vite + Tailwind CSS project with no JavaScript in the build stage, producing pure HTML/CSS output.

A full-stack Next.js TypeScript template focused on functionality over UI, featuring Zustand, TanStack Query, and ESLint 9 support.
Vite TailwindCSS NoJS Starter is a boilerplate that scaffolds a Vite + Tailwind CSS project with no JavaScript in the build stage, providing a minimal HTML/CSS foundation for prototyping.
Vite TailwindCSS NoJS Starter is a starter template from the kometolabs GitHub organization that scaffolds a new project with Vite and Tailwind CSS preconfigured. It takes a target project name as input and produces a minimal directory with an HTML entry point and Tailwind CSS processing wired up. The build stage compiles only HTML and CSS — no JavaScript is bundled or executed — and the result is a plain static site ready for deployment.
npx degit kometolabs/vite-tailwind-nojs-starter my-tailwind-app in the terminal.Front-end developers who need a quick prototype environment without React or Vue overhead. Designers and developers who want to test static HTML/CSS with Tailwind utilities in a live dev server. Developers who prefer to load a standalone JavaScript framework like Alpine.js directly from a CDN through an HTML script tag instead of through a bundler.
Run the degit command to copy the starter into a new folder, then install dependencies with pnpm, yarn, or npm. Finally, start the Vite development server with pnpm run dev (or the equivalent command for your package manager). The project contains an index.html and Tailwind CSS entry; editing either triggers hot reload via Vite.
Yes, it is open source under the kometolabs GitHub repository. You can scaffold and modify it freely for any project.
No. The build stage does not involve any JavaScript. It is intended for pure HTML/CSS compilation, though you can import a standalone JavaScript framework from HTML if you need interactivity.
Use npx degit kometolabs/vite-tailwind-nojs-starter my-tailwind-app, then install dependencies with pnpm i, yarn, or npm i. The degit command copies the repository without its git history.
Run pnpm run dev, yarn dev, or npm run dev to start the Vite development server. Edit the HTML and Tailwind classes, and the page updates automatically.
