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

@walkrstudio/cli

v0.5.2

Published

CLI for previewing and exporting Walkr walkthroughs.

Readme

@walkrstudio/cli

CLI for previewing and exporting Walkr walkthroughs.

Install

npm install -g @walkrstudio/cli

Or run without a global install:

npx walkr <command>

Commands

walkr dev <script>

Opens Walkr Studio with live reload. Write your walkthrough script, and the preview updates every time you save.

walkr dev demo.ts

This starts a Vite dev server on port 5174, loads your script, proxies the target website, and opens the Studio UI in your browser.

walkr export <script> [options]

Exports a walkthrough to video or a self-contained HTML embed.

# MP4 (default)
walkr export demo.ts

# GIF
walkr export demo.ts --format gif --output demo.gif

# Self-contained HTML embed
walkr export demo.ts --format embed --output demo.html

Options:

| Flag | Type | Default | Description | | --- | --- | --- | --- | | --format | mp4 \| gif \| webm \| embed | mp4 | Output format. | | --output | string | output.<ext> | Output file path. | | --width | number | 1920 | Render width in px. | | --height | number | 1080 | Render height in px. | | --realtime | boolean | — | Use real-time screencast instead of virtual time. |

walkr --help

Shows command usage and examples.

walkr --version

Prints the current version.

Example walkthrough script

import {
  walkr,
  moveTo,
  click,
  type,
  highlight,
  wait,
  scroll,
  zoom,
  pan,
  sequence,
  parallel,
} from "@walkrstudio/core";

export default walkr({
  url: "https://your-app.com",
  title: "Product demo",
  cursor: {
    shape: "circle",
    color: "#22d3ee",
    size: 18,
    shadow: true,
    clickColor: "#0ea5e9",
  },
  steps: [
    moveTo("#email-input", { duration: 600 }),
    click("#email-input"),
    type("[email protected]", { selector: "#email-input", delay: 35 }),

    parallel(
      highlight(".submit-btn", {
        spotlight: true,
        color: "#22d3ee",
        duration: 1200,
        backdropOpacity: 0.35,
      }),
      sequence(
        wait(200),
        moveTo(".submit-btn", { duration: 500 }),
      ),
    ),
    click(".submit-btn"),

    sequence(
      wait(300),
      scroll(0, 700, { smooth: true }),
      wait(200),
      zoom(1.2, { x: 960, y: 500 }),
      pan(960, 460, { duration: 500 }),
    ),
  ],
});

Requirements

  • Node.js >= 18
  • A Chromium-based browser (or set CHROMIUM_PATH)
  • ffmpeg on your system PATH (for mp4/gif/webm export)