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

decocms

v0.16.0

Published

CLI for managing deco.chat apps & projects

Readme

Deco CLI Reference

The Deco CLI is your interface for managing AI-native projects built with deco.chat.

Official docs: https://docs.deco.page/


Authentication

| Command | Description | | ------------- | ------------------------------------------------------------ | | deco login | Authenticate and store an API token for subsequent commands. | | deco logout | Remove local credentials and end the session. | | deco whoami | Show the currently authenticated user and workspace. |


Project Management

| Command | Description | | ---------------- | --------------------------------------------------------------------------- | | deco create | Scaffold a new deco project from an official template. | | deco configure | Re-run setup for the current directory to change workspace or app settings. |


Development

| Command | Description | | --------------------------- | ---------------------------------------------------------------------------------------------------- | | npm run dev | Preferred way to run local Worker and React frontend in watch mode. | | deco dev | (Experimental) Future unified development command. | | deco link [build-command] | Link your local dev server to a public domain. Supports -p <port>. Example: deco link npm run dev. |


Type Generation

| Command | Description | | --------------- | -------------------------------------------------------------------------- | | deco gen | Generate types for external integrations (deco.gen.ts). | | deco gen:self | Generate types for your own tools and workflows via local /mcp endpoint. |


Hosting & Deployment

| Command | Description | | ----------------------------- | -------------------------------------------------------------------------- | | npm run deploy | Builds frontend and invokes deco deploy. Recommended for most use cases. | | deco deploy | Bundle and deploy to Cloudflare Workers. Supports -w, -a, and -l. | | deco hosting list -w <name> | List deployed apps in a specific workspace. |


Integrations

| Command | Description | | ---------- | ----------------------------------------- | | deco add | Add and configure workspace integrations. |


Maintenance

| Command | Description | | ------------- | ------------------------------------------------ | | deco update | Upgrade the CLI to the latest published version. |


Getting Help

| Command | Description | | ------------- | ------------------------------------------------ | | deco --help | Display the full list of CLI commands and usage. |


Configuration File

The CLI uses a local config file to store your workspace and app context. Set or update this configuration anytime using: deco configure


Environment Variables

| Variable | Purpose | | --------------------- | --------------------------------------------------------------------- | | DECO_CHAT_API_TOKEN | API token for authentication (set by deco login). | | DECO_CHAT_API_LOCAL | Overrides API base URL for local development. | | DECO_SELF_URL | Local MCP endpoint for deco gen:self to introspect workflows/tools. |