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

@starvale-sdk/sts

v1.1.12

Published

STS CLI - A sleek, fast, and modern custom wrapper for npm

Readme

STS CLI ⚡

sts is a modern, lightweight, and super-fast CLI wrapper for npm. It lets you run common package manager tasks with short commands (like yarn or pnpm), and automatically manages standard command shortcuts, routing everything seamlessly to npm under the hood.

Key Features

  • ⚡ Modern Command Aliasing: Supports Yarn/PNPM style commands like sts add <package> and sts remove <package> (mapped to npm install / npm uninstall).
  • 📦 Auto Script Detection: Running sts <script> will check your local package.json for scripts (e.g., dev, build). If found, it automatically executes it as npm run <script> without needing to type run.
  • ✨ Premium Visual Banner: Shows exactly what npm command is running with styled, zero-dependency ANSI console headers.
  • 🚀 Zero Dependencies: Written in pure Node.js with no external npm dependencies, making it instantly executable and highly performant.

License & Access Verification 🔐

To prevent unauthorized usage, the sts runner requires your project's package.json to contain a valid token and licenseKey.

Before running any script or installing dependencies, the CLI will automatically perform a verification check against https://studio.althar.dev.

Setup

Add the "token" and "licenseKey" fields to the root of your project's package.json:

{
  "name": "your-project",
  "version": "1.0.0",
  "token": "YOUR_ACCESS_TOKEN",
  "licenseKey": "YOUR_LICENSE_KEY"
}

Note: Informational commands (like sts -v, sts --help, sts help) will bypass this check automatically.

Installation

To install and use sts globally on your system:

1. Locally Linking (Development)

In the directory of this package (d:\Althar\SDK\sts), run:

npm link

This creates a symlink from your global bin to this package, allowing you to use sts immediately.

2. Global Installation

Alternatively, you can install it globally via:

npm install -g .

3. Publishing to NPM 🚀

Because the name sts is already taken on the public NPM registry, you should publish it under a unique name or as a scoped package:

  1. Rename the package in package.json's "name" field:
    • To publish as a scoped package (e.g. @your-username/sts):
      "name": "@your-username/sts"
      (Note: Even with a scoped name, npm will still register the command as sts because of the "bin": { "sts": "./bin/sts.js" } config!)
    • Or rename it to a unique unscoped name:
      "name": "sts-cli-wrapper"
  2. Login to NPM in your terminal:
    npm login
  3. Publish the package:
    • If using a scoped package (e.g. @your-username/sts), run:
      npm publish --access public
    • If using an unscoped package, run:
      npm publish
    Now, anyone can install your tool globally using npm install -g <your-package-name> and use it via the sts command!

Usage

Here are some comparisons of how sts simplifies your commands:

| Command | Action | Equivalent NPM Command | |---------|--------|------------------------| | sts install | Install dependencies | npm install | | sts start | Start project | npm start | | sts dev | Run development script | npm run dev | | sts build | Run build script | npm run build | | sts add <name> | Add a dependency | npm install <name> | | sts remove <name> | Remove a dependency | npm uninstall <name> |

Enjoy a faster and cleaner terminal workflow! ⚡