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

@mittwald/mittvibes

v1.0.4

Published

CLI tool to generate boilerplate for mittwald extensions

Readme

mittvibes

CLI tool to generate boilerplate for mittwald mStudio extensions.

Powered by weissaufschwarz

Installation

npm install -g @mittwald/mittvibes
# or
pnpm add -g @mittwald/mittvibes
# or run directly
npx @mittwald/mittvibes

Usage

First Time Setup

Authenticate with mittwald:

mittvibes auth:login

This opens your browser for OAuth authentication (uses port 52847 for callback).

Creating Extensions

Run the CLI in your desired directory:

mittvibes

The CLI guides you through:

  1. Organization Selection - Choose your mittwald organization
  2. Contributor Check - Automatically verify contributor status
  3. Interest Submission - Submit contributor interest if needed (via API)
  4. Extension Context - Choose organization-level or project-level extensions
  5. Project Selection - Select specific project for project-level extensions
  6. Project Setup - Choose name and directory
  7. Dependencies - Automatically install with pnpm
  8. Database Setup - Configure PostgreSQL and run migrations
  9. Extension Config - Set up credentials with auto-generated secrets

Features

  • Complete Boilerplate - TanStack Start, Prisma ORM with field encryption, mittwald Extension Bridge, mitthooks, Biome linting
  • OAuth Authentication - Secure PKCE-based authentication
  • Organization Management - Select organizations, automatic contributor verification and interest submission
  • Extension Context - Choose organization-level or project-level extensions
  • Auto-Configuration - Auto-generated secrets, dependency installation, database migrations, environment setup
  • Interactive CLI - Step-by-step guided setup with visual indicators

CLI Commands

# Authentication
mittvibes auth:login    # Authenticate with mittwald OAuth
mittvibes auth:logout   # Clear authentication tokens
mittvibes auth:status   # Check authentication status

# Project Creation
mittvibes              # Create new extension project (default)
mittvibes init         # Explicit project initialization

# Help
mittvibes help         # Show available commands

Requirements

For Using the CLI:

  • Node.js v18.0.0+
  • mittwald account with access to organizations
  • Port 52847 available for OAuth callback

For Generating Extensions:

  • Organization with contributor status

Development

Setup

git clone <repository>
cd mittvibes/cli
pnpm install

Commands

pnpm dev        # TypeScript with hot reload
pnpm build      # Compile to JavaScript
pnpm start      # Run built version

Testing

# Development mode
pnpm dev

# Build and test
pnpm build && pnpm start

# Global symlink
pnpm link --global
mittvibes  # Available globally

# Test in temp directory
mkdir /tmp/test-extension && cd /tmp/test-extension
node /path/to/mittvibes/cli/dist/index.js

Technology Stack

Framework & Runtime: TanStack Start, React 19, TypeScript, Vite

Database & Backend: Prisma ORM with field encryption, PostgreSQL, Server Functions

mittwald Integration: Extension Bridge, API Client, mitthooks, Flow Components

Development Tools: Biome, Vitest, TanStack Router, TanStack Query, Environment Validation

Contributor Management

The CLI automatically detects contributor status for your organizations. If you're not a contributor yet, it will submit an interest request via API.

Resources:

Troubleshooting

Port 52847 in use:

lsof -i :52847  # Check what's using the port

Authentication issues:

mittvibes auth:logout && mittvibes auth:login  # Clear and retry
mittvibes auth:status  # Check status

Organization access: Ensure you have the necessary permissions for the mittwald organization

Support


Made with ⚡ by weissaufschwarz