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

schemerr

v1.0.5

Published

Schemerr – AI-powered deployment orchestrator

Readme

Schemerr CLI 🚀

Schemerr is an AI-powered deployment orchestrator that helps you deploy your projects to your favorite cloud providers (Vercel, Netlify, Render, Railway) with ease and intelligence.


📦 Installation

Install the Schemerr CLI globally via npm:

npm install -g schemerr

🚀 Quick Start

1. Login

First, authenticate with your Schemerr account:

schemerr login

2. Initialize Project

Navigate to your project directory and run the initialization command. Schemerr will analyze your project structure and generate a .schemerrc configuration file.

schemerr init

3. Configure Provider Tokens

Before deploying, ensure you have set up the API tokens for your chosen provider. You can do this via the CLI:

# Example for Vercel
schemerr config set vercel-token <your-vercel-token>

# Example for Netlify
schemerr config set netlify-token <your-netlify-token>

4. Deploy

Once configured, deploying is as simple as:

schemerr deploy

You can also override the provider at runtime:

schemerr deploy --provider render

🛠️ Commands

| Command | Description | | :--- | :--- | | init | Analyzes your project and generates a .schemerrc spec. | | deploy | Deploys your project to the configured provider. | | login | Authenticates the CLI with your Schemerr account. | | oauth | Manage OAuth connections for providers. | | config | Manage local configuration and provider tokens. | | rollback | Roll back to a previous deployment version. |


⚙️ Configuration (.schemerrc)

The .schemerrc file defines how your project should be built and deployed. It is automatically generated by schemerr init, but you can customize it manually:

{
  "project": {
    "name": "my-awesome-app",
    "framework": "nextjs"
  },
  "build": {
    "command": "npm run build",
    "outputDir": "dist"
  },
  "deploy": {
    "provider": "vercel",
    "region": "us-east-1"
  }
}

⏪ Rollback

Made a mistake? Roll back to a previous deployment instantly:

schemerr rollback

📄 License

ISC © Schemerr