npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@helios-project/studio

v0.107.2

Published

Browser-based development environment for Helios video compositions.

Readme

Helios Studio

The browser-based development environment for programmatic video.

Helios Studio is a visual interface for composing, previewing, and debugging Helios video projects. It bridges the gap between code-driven composition and visual verification, offering a Timeline, Props Editor, and real-time Preview.

Features

  • Visual Timeline: Scrub through your video, view frames, and manage playback.
  • Props Editor: Adjust composition inputs dynamically using a schema-aware editor.
  • Assets Panel: Manage and preview project assets (images, audio, video).
  • Renders Panel: Track render jobs and client-side exports.
  • Hot Reloading: Instant feedback when you modify your composition code.
  • Diagnostics: Inspect environment capabilities and system status.
  • Client-Side Export: Export MP4/WebM directly from the browser using WebCodecs.

Getting Started

The recommended way to use Helios Studio is by initializing a new project with the Helios CLI.

1. Create a New Project

Use the init command to scaffold a project with your preferred framework (React, Vue, Svelte, Solid, or Vanilla):

npx helios init my-project

2. Install Dependencies

Navigate to your project directory and install the necessary packages:

cd my-project
npm install

3. Start the Studio

Run the development server, which launches Helios Studio:

npm run dev

This will typically open the Studio at http://localhost:5173.

Architecture

Studio acts as a host environment for the Helios Player.

  • Frontend: React-based UI that wraps the <helios-player> component.
  • Backend: Vite plugin (vite-plugin-studio-api) that provides API endpoints for file discovery, asset management, and render job orchestration.
  • Context: StudioContext manages the global state (active composition, player state, assets).

Usage

Commands

Start Development Server

npx helios studio

Launches the Studio UI for the current directory. This is what npm run dev typically executes.

Preview Production Build

npx helios preview

Serves the static build output using vite preview, providing a production-like environment for verifying your composition before deployment.

Compare Component

npx helios diff <component-name>

Compares your local component implementation against the official registry version, highlighting any modifications you've made.

List Components

npx helios components [query] [--all] [--framework <name>]

Lists available components in the registry. You can filter by name/description, framework, or show all components.

Standalone Usage

You can also install the Studio package directly:

# Install globally
npm install -g @helios-project/studio

# Run from any directory
helios-studio

For a comprehensive guide on getting started, see the Quickstart Guide.

Keyboard Shortcuts

| Key | Action | |-----|--------| | Space | Play / Pause | | Arrow Left/Right | Previous / Next Frame | | Shift + Arrow | Jump 10 Frames | | Home | Go to Start | | I | Set In Point | | O | Set Out Point | | L | Toggle Loop | | Cmd/Ctrl + K | Open Composition Switcher | | ? | Open Shortcuts Help |

Development

To run the Studio package locally for development (contributing):

  1. Install dependencies:

    npm install
  2. Start the development server:

    npm run dev
  3. Run tests:

    npm test

License

Elastic License 2.0 (ELv2). See root LICENSE for details.