The CDN path is the fastest way to try Nakshora: no npm, no config, no build.

Add the stylesheet#

index.html
html
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/nakshora/nakshora@main/dist/css/nakshora.min.css" />

The CDN file is the full build — every base utility with responsive variants. It is minified to about 6 MB (133 KB brotli), which is ideal for experiments but too large for production.

Production: switch to JIT#

For production, compile only the classes you use (typically 5–20 KB) with the integrations/cli|CLI or integrations/vite|Vite plugin. The concepts/jit-compiler|JIT compiler guide explains the difference.

Warning. Never ship the full CDN build to production — JIT builds are 300× smaller.