Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.71 KB

File metadata and controls

31 lines (23 loc) · 1.71 KB

Build Sizes

Build Variant Minified Size Gzipped Description
ESM Standard 258.8 KB 88.1 KB ES Module with autoload capability
UMD Standard 259.7 KB 88.2 KB Universal Module Definition with autoload capability
ESM Lean 139.6 KB 38.6 KB ES Module without bundled libraries
UMD Lean 141.7 KB 39.0 KB UMD without bundled libraries
Standalone ESM 3576.3 KB 985.2 KB All-inclusive ES Module (no external dependencies)
Standalone UMD 3839.9 KB 1035.4 KB All-inclusive UMD (no external dependencies)
CSS 12.2 KB 2.3 KB Minified styles (required for all builds)

Build Configuration Guide

All builds include autoload capability (v1.0.18+). Available in both ESM and UMD formats:

Configuration What It Does When to Use Libraries Included
Standard Includes autoload for CDN libraries Default choice for most projects Core editor with autoload capability
Lean Minimal build, you provide all dependencies Advanced users with existing bundler setup None - bring your own
Standalone Everything bundled, no external dependencies Offline/airgapped environments All libraries pre-bundled (~3.5MB)

Quick Decision Guide

  • Need it to just work? → Use Standard (258.8 KB with autoload)
  • Have a complex build system? → Use Lean (139.6 KB, you control dependencies)
  • No internet/CDN access? → Use Standalone (3576.3 KB, everything included)