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

@dotmatrixlabs/create-dotx-plugin

v1.2.4

Published

Scaffold a Dot X plugin project

Readme

@dotmatrixlabs/create-dotx-plugin

Scaffold a Dot X plugin project.

Usage

Run without any arguments to start the interactive guided setup:

npx @dotmatrixlabs/create-dotx-plugin

The TUI will walk you through choosing a plugin name, ID, runtime (Deno or Node), whether to include the GitHub release workflow, and whether to scaffold into the current directory or a new folder based on the plugin ID.

CLI flags (for CI / automation)

Flags can be passed directly to skip the interactive prompts:

npx @dotmatrixlabs/create-dotx-plugin --name "My Plugin" --node
  • --name <name>: Plugin display name
  • --id <id>: Override the generated plugin ID (kebab-case)
  • --deno (default): Deno + TypeScript template
  • --node: Node + TypeScript + esbuild template with plugin.zip packaging
  • --no-release-workflow: Skip .github/workflows/release-plugin.yml in the generated project
  • --here: Scaffold into the current directory instead of creating a new folder
  • --force: Overwrite existing files

Generated Projects

Both runtimes include an optional GitHub Actions release workflow by default:

  • .github/workflows/release-plugin.yml

Node templates depend on @dotmatrixlabs/dotx-plugin-sdk from npm and include:

  • npm run build
  • npm run package
  • manifest-driven packaging via manifest.json -> packaging.include
  • no special local SDK path wiring; the generated project consumes the published @dotmatrixlabs/dotx-plugin-sdk package directly

Deno templates import @dotmatrixlabs/dotx-plugin-sdk through Deno's npm: support and include:

  • deno task start
  • deno task package

The shared release workflow auto-detects whether the project uses Deno or Node.

Typical Node Workflow

npx @dotmatrixlabs/create-dotx-plugin --name "My Plugin" --node
cd my-plugin
npm install
npm start

To scaffold directly into the current directory:

npx @dotmatrixlabs/create-dotx-plugin --name "My Plugin" --node --here
npm install
npm start

To create a marketplace package:

npm run package

Typical Deno Workflow

npx @dotmatrixlabs/create-dotx-plugin --name "My Plugin"
cd my-plugin
deno task start

To create a marketplace package:

deno task package

AI Skill

This repo includes a dot-x-plugin-dev agent skill that gives AI coding assistants (Claude Code, Cursor, Windsurf, etc.) deep knowledge of the Plugin SDK.

The scaffolder will offer to install it at the end of the setup flow. Or install it manually:

npx skills add DotMatrixLabs/create-dotx-plugin/dot-x-plugin-dev