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

@dizmo/create

v1.0.3

Published

Create new dizmos with a modern build-system

Readme

@dizmo/create

Scaffold new dizmo projects with a modern, Vite-based build system.

Usage

Interactive Mode

npx @dizmo/create

You'll be prompted for:

  • Project name
  • Description
  • Bundle ID
  • Template (TypeScript / JavaScript / Planisy)
  • Stylesheet (SCSS / CSS)
  • Initialize git repository

With Arguments

npx @dizmo/create my-dizmo

Non-Interactive Mode

npx @dizmo/create my-dizmo --ts --scss --bundle-id com.dizmo.my.dizmo --description "My dizmo"

CLI Options

| Option | Alias | Description | |--------|-------|-------------| | --typescript | --ts | Use TypeScript template | | --javascript | --js | Use JavaScript template | | --planisy | | Use Planisy TypeScript template | | --scss | | Use SCSS for stylesheets | | --css | | Use plain CSS for stylesheets | | --bundle-id <id> | | Bundle identifier (e.g., com.dizmo.myapp) | | --description <text> | | Project description | | --git | | Initialize git repository (default: true) | | --no-git | | Skip git initialization | | --skip-install | | Skip npm install | | --local <path> | | Use local path for @dizmo/build (development only) |

Generated Project Structure

my-dizmo/
├── package.json           # Project config with dizmo.settings
├── tsconfig.json          # TypeScript config (if using TS)
├── README.md              # Project readme with build instructions
├── .gitignore
├── source/
│   ├── index.html         # Entry HTML
│   ├── index.ts           # Entry script (or .js)
│   └── styles/
│       └── styles.scss    # Stylesheet (or .css)
└── assets/
    ├── Icon.svg           # Light theme icon
    ├── Icon-dark.svg      # Dark theme icon
    └── Preview.png        # Preview image

Building the Generated Project

After scaffolding:

cd my-dizmo
npm install
npm run build

The .dzm file will be created in the build/ directory.

See @dizmo/build for build options and configuration.

Bundle ID Format

Bundle IDs must follow these rules:

  • Lowercase only
  • Words separated by dots
  • Each segment starts with a letter
  • At least 2 segments

Examples:

  • com.dizmo.myapp
  • com.company.my.dizmo
  • MyApp ✗ (uppercase)
  • myapp ✗ (single segment)

Development

Use --local to link to the local @dizmo/build during development:

node dizmo-create/dist/bin/dizmo-create.js my-test-dizmo --local ../dizmo-build

This sets @dizmo/build to file:../dizmo-build in the generated package.json.

Requirements

  • Node.js >= 22.0.0

License

ISC