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

@razomy/cli

v0.0.0-alpha.4

Published

A new CLI generated with oclif

Readme

@razomy/cli

A new CLI generated with oclif

oclif Version Downloads/week

Usage

$ npm install -g @razomy/cli
$ razomy COMMAND
running command...
$ razomy (--version)
@razomy/cli/0.0.0-alpha.4 linux-x64 node-v24.14.1
$ razomy --help [COMMAND]
USAGE
  $ razomy COMMAND
...

Commands

razomy cli add PACKAGENAME

Installs a package

USAGE
  $ razomy cli add PACKAGENAME [-r python|node|rust|java]

ARGUMENTS
  PACKAGENAME  Name of the package (e.g. @razomy/string-case)

FLAGS
  -r, --runtime=<option>  [default: node] Target runtime (e.g. node)
                          <options: python|node|rust|java>

DESCRIPTION
  Installs a package

See code: src/commands/cli/add.ts

razomy cli list

Lists all installed packages across all workspaces

USAGE
  $ razomy cli list

DESCRIPTION
  Lists all installed packages across all workspaces

See code: src/commands/cli/list.ts

razomy cli remove PACKAGENAME

Uninstalls a package from the workspace

USAGE
  $ razomy cli remove PACKAGENAME [-r python|node|rust|java]

FLAGS
  -r, --runtime=<option>  [default: node] Target runtime (e.g. node)
                          <options: python|node|rust|java>

DESCRIPTION
  Uninstalls a package from the workspace

See code: src/commands/cli/remove.ts

razomy cli runtime add [RUNTIMENAME] [VERSION]

Downloads and installs isolated runtimes (python,node,rust,java)

USAGE
  $ razomy cli runtime add [RUNTIMENAME] [VERSION] [-d]

ARGUMENTS
  [RUNTIMENAME]  (python|node|rust|java) [default: node] Which runtime to install (e.g. node)
  [VERSION]      Version to install (if not provided, default version is used) (e.g. 25.9.0)

FLAGS
  -d, --set-default  Set this version as the default alias

DESCRIPTION
  Downloads and installs isolated runtimes (python,node,rust,java)

See code: src/commands/cli/runtime/add.ts

razomy cli runtime list

Lists all installed runtimes and their versions

USAGE
  $ razomy cli runtime list

DESCRIPTION
  Lists all installed runtimes and their versions

See code: src/commands/cli/runtime/list.ts

razomy cli runtime remove RUNTIMENAME [VERSION]

Removes an installed runtime or a specific version

USAGE
  $ razomy cli runtime remove RUNTIMENAME [VERSION]

ARGUMENTS
  RUNTIMENAME  (python|node|rust|java) Which runtime to remove (e.g. node)
  [VERSION]    Specific version to remove (e.g. 25.9.0). If not provided, completely removes the runtime.

DESCRIPTION
  Removes an installed runtime or a specific version

See code: src/commands/cli/runtime/remove.ts

razomy di

USAGE
  $ razomy di

See code: src/commands/di/index.ts

razomy io [MODULEPATH]

Dynamically executes a function from a any module with autocomplete and prompts

USAGE
  $ razomy io [MODULEPATH...]

ARGUMENTS
  [MODULEPATH...]  Path to package name with function path

DESCRIPTION
  Dynamically executes a function from a any module with autocomplete and prompts

See code: src/commands/io/index.ts