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

hotmixer

v1.0.2

Published

Scaffold HTMX-powered web projects in 12 backend frameworks

Readme

HoTMiXer

HoTMiXer is a CLI tool that scaffolds new web projects with HTMX plus your choice of backend. Pick a language, pick a framework, and start coding immediately.

Installation

npm install -g hotmixer

Requires Node.js 16+.

Usage

hotmixer create myproject

You'll be prompted to choose a language and framework. Or skip the prompts:

hotmixer create myproject --backend Flask

Commands

| Command | Description | |---------|-------------| | hotmixer create <name> | Scaffold a new project | | hotmixer list-backends | List available backends with tooling status | | hotmixer --version / -V | Print version |

Create Options

| Option | Description | |--------|-------------| | -b, --backend <name> | Skip interactive prompts, use named backend | | -p, --port <port> | Dev server port (shown in instructions) | | --skip-git | Skip git init | | --help | Show help |

Exit Codes

| Code | Meaning | |------|---------| | 0 | Success | | 1 | Error (invalid name, unknown backend, no tooling detected) |

Supported Backends

Python

  • Flask — Jinja2 templates, Pip requirements
  • Django — Django template tags, django-admin bootstrap

Go

  • Gin — Go templates, go.mod ready
  • Echo — Static file serving, middleware included

Node.js

  • Express — EJS templates, npm scripts
  • Koa — EJS templates, koa-router

PHP

  • Laravel — Blade templates, Composer, full skeleton

Rust

  • Actix Web — Handlebars templates, Cargo ready
  • Axum — Askama templates, Tokio runtime

C/C++

  • Mongoose — Single-header embedded web server, C source

Common Lisp

  • Clack/Ten — Ten templates, Ningle router, Clack server
  • Clack/Djula — Djula templates, Ningle router, Clack server

Getting Started Per Backend

Python (Flask)

cd myproject
python -m venv venv
source venv/bin/activate      # or venv\Scripts\activate on Windows
pip install -r requirements.txt
python app.py

Python (Django)

cd myproject
python -m venv venv
source venv/bin/activate
pip install django
python manage.py migrate
python manage.py collectstatic
python manage.py runserver

Go (Gin / Echo)

cd myproject
go mod tidy
go run main.go

Node.js (Express / Koa)

cd myproject
npm install
npm start

PHP (Laravel)

cd myproject
composer install
cp .env.example .env
php artisan key:generate
php artisan serve

Rust (Actix Web / Axum)

cd myproject
cargo run

C/C++ (Mongoose)

cd myproject
gcc main.c mongoose.c -o server
./server

Common Lisp (Clack/Ten, Clack/Djula)

Start your REPL (SBCL, CCL, etc.), load the ASDF system, switch to the project package, and call (start).

Migration from Pre-0.9.9 Scaffolds

If you scaffolded a project with an older version of HoTMiXer:

  • htmx CDN → local: Templates now bundle htmx.min.js locally. If you update your scaffold, replace the unpkg <script> tag with the local path for your backend.
  • New CLI flags: --skip-git, --version, list-backends, and --port are now available.
  • Input validation: Project names are now validated before scaffolding. Reserved names like test and node_modules are rejected.
  • Django instructions: collectstatic and migrate steps are now documented in post-scaffold instructions.

Have a Feature Idea?

Open an issue or PR on GitHub — new backends, hot-reloading designs, and other improvements are welcome.

Contributing

Open an issue or PR on GitHub.

License

MIT. See LICENSE for details.