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

@jolli.ai/site-cli

v0.2.1

Published

Jolli site-generation CLI plugin — commander-shaped wrapper around the private @jolli.ai/site-core library (bundled inline). Loaded by the open-source @jolli.ai/cli when both packages are installed together; adds the `new`, `build`, `dev`, `start`, `conve

Readme

@jolli.ai/site-cli

CLI plugin that adds documentation site-generation commands to the open-source @jolli.ai/cli. Loaded automatically when both packages are installed together.

Installation

npm install -g @jolli.ai/cli @jolli.ai/site-cli

Once both are installed, the following commands become available:

  • jolli new — Scaffold a new documentation project
  • jolli build — Build a static site with search indexing
  • jolli dev — Start a dev server with hot reload
  • jolli start — Build and serve a production site
  • jolli convert — Convert a documentation folder to Nextra-compatible structure
  • jolli reverse — Reverse-engineer a site.json from a build output
  • jolli theme — Manage documentation themes

Without @jolli.ai/site-cli installed, the host CLI displays these commands as stubs that prompt the user to install this package.

Architecture

This package is a commander-shaped shell around a private framework-agnostic core library (@jolli.ai/site-core, never published — bundled inline into this package at build time). The same core library powers the Jolli web tool. On top of the core, this package adds:

  • Commander command definitions
  • File I/O wrappers (ContentMirror, NextraProjectWriter, theme management)
  • Subprocess orchestration (NpmRunner, PagefindRunner)
  • Dev server file watching

See src/Plugin.ts for the host integration entry point.

License

Elastic License 2.0 (ELv2). You may use, copy, modify, and redistribute this package — see LICENSE for the full terms.

ELv2 is a source-available license; it is not OSI-approved open source. The two limitations to be aware of:

  • You may not provide @jolli.ai/site-cli to third parties as a hosted or managed service that exposes a substantial set of its features to your users.
  • You may not modify or remove the license terms or copyright notices.

@jolli.ai/site-cli ships with the framework-agnostic @jolli.ai/site-core library bundled inline into dist/Plugin.js at build time. site-core is never published to npm independently — the only licensed artifact users receive is this package, under ELv2.