Create, preview, and render HTML video compositions from the command line.
The hyperframes CLI is the primary way to work with Hyperframes. It handles project creation, live preview, rendering, linting, and diagnostics — all from your terminal.
Copy
Ask AI
npm install -g hyperframes# or use directly with npxnpx hyperframes <command>
Preview compositions with live hot reload during development
Render compositions to MP4 (locally or in Docker)
Lint compositions for structural issues
Check your environment for missing dependencies
Use a different package if you want to:
Render programmatically from Node.js code — use the producer
Build a custom frame capture pipeline — use the engine
Embed a composition editor in your own web app — use the studio
Parse or generate composition HTML in code — use core
The CLI is the recommended starting point for all Hyperframes users. It wraps the producer, engine, and studio packages so you do not need to install them separately.
Hyperframes Studio v0.1.0Local: http://localhost:3000Watching for changes...
Opens your composition in the browser. Edits to index.html and any referenced sub-compositions are reflected instantly. The preview uses the same Hyperframes runtime as production rendering, so what you see is what you get.
Linting index.html...WARNING unmuted-video Video element 'clip-1' should have the 'muted' attribute for reliable autoplay. at index.html:51 issue found (0 errors, 1 warning)
The linter detects missing attributes, deprecated names, structural problems, and more. See Common Mistakes for details on each rule.