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

create-mc-bedrock

v2.1.0

Published

Interactive scaffolder for Minecraft Bedrock addons. Pick from a bundled Custom Workspace (powered by @keyyard/bedrock-build), Microsoft Official Samples, or Community Templates to get a ready-to-build project in seconds.

Readme

Create MC Bedrock CLI

GitHub Stars

Node.js License Discord Website

The fastest way to start a Minecraft Bedrock addon. Three sources, one command, zero boilerplate.


What's new in 2.0

  • Three sources — Custom Workspace (recommended), Microsoft Official Samples, Community Templates.
  • Bundled Custom Workspace powered by @keyyard/bedrock-build — TypeScript bundling, hot-reload deploy to local Minecraft, one-shot .mcaddon packaging.
  • Pinned dependencies — the scaffolder queries the npm registry and writes resolved versions into your package.json, so every new project starts on current-stable @minecraft/server.
  • Auto-install prompt after scaffold.

Quick start

npx create-mc-bedrock

You'll be asked for:

  1. Source — pick one of three:
  2. Project name — used for bedrock.config.json, package.json, and manifest headers.
  3. Destination folder — defaults to ./<project-name>.
  4. (After scaffold) Install dependencies now?y to run npm install, n to skip.

Manifest UUIDs are regenerated for every scaffold and BP↔RP dependency UUIDs are kept consistent.

Custom Workspace at a glance

my-addon/
  bedrock.config.json
  package.json
  tsconfig.json
  src/
    main.ts                ← entry — bundled into BP/scripts/main.js
  packs/
    BP/  manifest.json + behavior pack files
    RP/  manifest.json + resource pack files
  dist/                    ← build output (gitignored)

Useful scripts the scaffolder writes for you:

npm run build           # dev build
npm run watch           # rebuild on save
npm run deploy          # build + copy to local Minecraft
npm run deploy:watch    # hot reload to local Minecraft
npm run pack            # release build + zip into .mcaddon
npm run release         # release build only

See the full bedrock.config.json reference for compiler options.

Requirements

  • Node.js 18 or higher.
  • Windows for deploy retail (custom deploy paths work everywhere). Mac/Linux retail deploy is on the roadmap.

Contributing

Want to add a Community Template? Open a PR against Keyyard/custom-mc-scripting-templates.

Found a bug in the scaffolder or compiler? File an issue here or join the Discord.

Credits

⭐ Stargazers Over Time