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

@aurios/mizzling

v1.1.6

Published

A CLI tool for managing Mizzle projects

Readme

🌧️ mizzling CLI

NPM Last Update GitHub Actions Workflow Status NPM Downloads GitHub License

Mizzling is the official command-line interface for the Mizzle ORM, designed to manage DynamoDB migrations and schemas with ease. It provides a streamlined workflow for initializing projects, detecting schema changes, and applying them to your AWS environment.

You can skip this and see a better documentation here

🚀 Installation

You can install the CLI as a development dependency in your project using your preferred package manager, so let's get started:

npm install @aurios/mizzling
# or
bun add @aurios/mizzling

🛠️ Commands

The CLI offers several commands to manage your DynamoDB infrastructure:

  1. bunx mizzling init: Initializes a new Mizzle configuration in your current directory. This is an interactive command that guides you through:
  • Setting the path to your schema files.
  • Defining the output directory for migrations and snapshots.
  • Configuring the AWS region and optional custom endpoints (e.g., for local development with DynamoDB Local or LocalStack).

It generates a mizzle.config.ts file upon completion.

  1. bunx mizzling generate [--name <name>]: Analyzes your current schema and compares it against the last saved snapshot to generate a new migration script.

It automatically detects created, deleted, or updated tables.

Creates a TypeScript migration file with up and down functions for version control.

  1. bunx mizzling push [-y, --yes]: Directly applies schema changes to your target DynamoDB environment without generating migration files.

The --yes flag skips the interactive confirmation prompt. Useful for rapid prototyping and synchronizing development environments.

  1. bunx mizzling list: Provides a summary of all existing DynamoDB tables in the configured environment.

For each table, it displays:

  • The table name.
  • Primary Key (PK) and Sort Key (SK) attributes.
  • A list of Global Secondary Indexes (GSIs).
  1. bunx mizzling drop: An interactive tool to safely remove tables from your environment.

It fetches a list of remote tables and allows you to select multiple items for deletion.

Warning: This action is irreversible and requires explicit confirmation before proceeding.

⚙️ Configuration (mizzle.config.ts)

Mizzling uses a central configuration file. You can use the defineConfig helper for full TypeScript type safety: TypeScript

import { defineConfig } from "@aurios/mizzling";

export default defineConfig({
  schema: "./src/schema.ts",
  out: "./migrations",
  region: "us-east-1",
  // endpoint: "http://localhost:8000", // Optional for local dev
});

Environment Overrides

Configuration values can be overridden using environment variables:

  • MIZZLE_REGION: Overrides the AWS region.
  • MIZZLE_ENDPOINT: Overrides the DynamoDB endpoint.
  • MIZZLE_SCHEMA: Overrides the schema path.
  • MIZZLE_OUT: Overrides the migrations output directory.

📄 License

This project is licensed under the MIT License.