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

@igness/ccslide

v0.3.0

Published

Local CLI editor and presenter for self-contained HTML slide decks.

Readme

ccslide

ccslide is a local CLI editor and presenter for self-contained HTML slide decks.

Install

Run without installing:

npx --yes @igness/ccslide deck

This creates deck.src.html if needed and opens it in your browser.

Or install globally:

npm install -g @igness/ccslide
ccslide deck

Requirements

  • Node.js 20 or newer
  • Python 3 (python3 or python; Windows also supports py -3)
  • Claude editing: an Anthropic API key
  • Codex or Blaze editing: the corresponding authenticated CLI on PATH

PDF export also requires Chromium. Install it with the same execution method you use for ccslide:

npx --yes @igness/ccslide install-chromium
# or, after a global install:
ccslide install-chromium

You may instead set CCSLIDE_CHROME_PATH to a Chrome or Chromium executable.

Usage

ccslide deck
ccslide edit deck.src.html
ccslide present deck.html
  • Click an element to select it.
  • Double-click text to edit it.
  • Drag or resize selected elements.
  • Use Cmd+Z (macOS) or Ctrl+Z (Windows/Linux) to undo.
  • Use the arrow keys to change slides.

Animation

CSS animations and transitions in a deck run normally in the browser. To make an element move smoothly between slides, give the corresponding element on both slides the same data-ccslide-magic value:

<section class="slide active">
  <div data-ccslide-magic="product-card" style="position:absolute;left:80px;top:120px">...</div>
</section>
<section class="slide">
  <div data-ccslide-magic="product-card" style="position:absolute;left:720px;top:260px">...</div>
</section>

Self-contained HTML built with the bundled runtime animates the matched element's position, size, and visual state during presentation. Each non-empty magic-move value must be unique within one slide. Raw templates, browsers without View Transitions support, and reduced-motion preferences fall back to an immediate slide change. Existing decks and custom user templates are not automatically migrated to the bundled runtime.

Templates

ccslide stores user templates and reference files under:

~/.ccslide/templates
~/.ccslide/references

Optional branded assets in ~/.ccslide/templates:

  • logo.svg or logo.png
  • cover.png, cover.jpg, or cover.webp
  • divider.png, divider.jpg, or divider.webp
  • closing.png, closing.jpg, or closing.webp

Environment overrides:

  • CCSLIDE_TEMPLATE_DIR: template directory containing templates/ and scripts/build.py
  • CCSLIDE_ASSET_DIR: directory containing branded assets

License

ccslide is proprietary software. Your content and output remain yours, and the bundled templates may be modified and redistributed. See LICENSE.