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

@cimplify/cli

v0.7.4

Published

Cimplify CLI — deploy, manage env vars, link projects, and scaffold storefronts

Readme

@cimplify/cli

The Cimplify command-line tool. Deploy from your terminal, manage env vars, attach domains, scaffold storefronts.

Install

curl -fsSL https://cimplify.io/install | sh

Detects your OS + arch, downloads the matching binary from the latest GitHub release, verifies its sha256, and drops it in ~/.local/bin/cimplify. ~20 ms cold start. The binary bundles every storefront template and the full component registry — init, add, and list work without a separate @cimplify/sdk install.

Override the destination with --prefix, pin a version with --version cli-v0.1.0, or skip the install entirely with bunx @cimplify/cli <command>.

What you can do

cimplify init my-store --template restaurant   # scaffold a working storefront
cimplify login                                  # browser PKCE flow (or --api-key for CI)
cimplify projects create my-store               # create a Cimplify project + Freestyle repo
cimplify link <project-id>                      # bind the current directory to a project
cimplify deploy [--prod]                        # push HEAD + build + deploy
cimplify logs --follow                          # stream build logs
cimplify rollback <deploy-id>                   # re-deploy a previous SHA
cimplify env push                               # upload .env.local to the linked project
cimplify domains add shop.example.com           # add a custom domain (prints DNS records)
cimplify status                                 # latest deployment summary

cimplify --help lists every subcommand and flag.

Conventions

  • Project link: cimplify link <project-id> writes .cimplify/project.json in the working directory. Subsequent commands read it to know which project to act on — no --project flag needed for the common case.
  • Auth: credentials persist at ~/.config/cimplify/auth.json. CI uses --api-key dk_live_… to skip the browser.
  • JSON mode: pass --json (or set CIMPLIFY_JSON=1) for { ok, data | error } machine-readable output on stdout.
  • Yes/no prompts: pass --yes (or -y) to auto-confirm.

How it talks to Cimplify

Every cloud command is a thin HTTP client over https://api.cimplify.io (override with CIMPLIFY_API_URL). The deploy flow specifically:

  1. git push to the project's git remote (uses a short-TTL token minted by Cimplify when the remote is Freestyle-hosted; falls back to your existing git auth otherwise).
  2. POST /v1/businesses/<bid>/projects/<pid>/deploy with the local SHA.
  3. Poll /deployments/<id>/progress every 1 second, printing log chunks as they arrive.
  4. Exit 0 on active, 2 on superseded, 1 on failed / cancelled.

Storefront templates

cimplify init ships with six designs out of the box:

| Template | Use case | |---|---| | bakery (default) | Warm food-style storefront | | restaurant | Menu + ordering UI | | retail | Product-grid retail | | services | Booking-style storefront | | grocery | Catalogue-heavy grocery layout | | fashion | Editorial fashion layout |

Each is a full Next.js project wired to @cimplify/sdk with the design system pre-applied.

Related

  • @cimplify/sdk — the runtime SDK + storefront components scaffolded by cimplify init.

License

MIT.