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

@jjuidev/jss-devtools

v0.5.9

Published

JavaScript stack dev tools CLI

Readme

jss-devtools

JavaScript Stack Dev Tools CLI — A complete SDK-style command-line interface (subcommands + per-subcommand --help).

  • Package name: @jjuidev/jss-devtools (npm public)
  • Bin: jss-devtools
  • Repo: jearax/jss-devtools
  • Audience: JavaScript / TypeScript developers building with Node.js stacks
  • Distribution: Public open-source on npm + GitHub (jearax/jss-devtools)
  • Owner: jjuidev

Why

Most JS dev-tool CLIs are either too narrow (single-purpose) or too scattered (one tool per concern). jss-devtools aims to be a single, opinionated entry point for the common JavaScript stack workflows — version management, scaffolding, and everyday helpers — with a Docker-style help experience that always tells you what's possible next.

MVP Commands

jss-devtools --help            # top-level help
jss-devtools version           # show CLI version
jss-devtools update [pkg]      # update package(s) to latest matching range
jss-devtools upgrade [pkg]     # upgrade to next major (interactive)
jss-devtools downgrade [pkg]   # downgrade to previous version
jss-devtools ls                # list installed / available versions
jss-devtools scaffold init     # initialize a new project from a preset

Each subcommand supports jss-devtools <subcommand> --help for usage details.

Tech Stack

| Concern | Choice | Status | |---|---|---| | Runtime baseline | Node.js v24 LTS (Krypton, v24.19.0) | locked | | Language | TypeScript | locked | | Package manager | pnpm | leaning | | Test framework | Vitest | locked | | Build/bundler | TBD — researching (bun, esbuild, tsup, tsdown, rollup, vite) | open |

Repo Layout

.
├── docs/             # project docs (PDR, architecture, standards, roadmap, etc.)
├── plans/            # planning artifacts (phase plans, reports)
├── src/              # (TBD) source
├── tests/            # (TBD) vitest
├── package.json      # (TBD) manifest
└── README.md

Status

Early scaffold. Repo is initialized with README + docs only; implementation has not started yet.

License

TBD