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

opusify-cli

v1.1.0

Published

The Full-Stack Scaffold Engine — Generate production-ready Next.js and Vite applications with one command.

Readme

Opusify CLI

  ██████╗ ██████╗ ██╗   ██╗███████╗██╗███████╗██╗   ██╗
 ██╔═══██╗██╔══██╗██║   ██║██╔════╝██║██╔════╝╚██╗ ██╔╝
 ██║   ██║██████╔╝██║   ██║███████╗██║█████╗   ╚████╔╝
 ██║   ██║██╔═══╝ ██║   ██║╚════██║██║██╔══╝    ╚██╔╝
 ╚██████╔╝██║     ╚██████╔╝███████║██║██║        ██║
  ╚═════╝ ╚═╝      ╚═════╝ ╚══════╝╚═╝╚═╝        ╚═╝

The Full-Stack Scaffold Engine — Generate production-ready apps with one command.


What is Opusify?

Opusify is a Full-Stack Scaffold Engine that dynamically generates tailored Next.js and Vite applications using Handlebars templates. It provides an interactive terminal wizard that walks you through selecting a project template, architecture, design system, and configuration options — then generates a fully configured, ready-to-run project in seconds.

Instead of spending hours wiring up boilerplate, you answer a few prompts and get a production-ready codebase with dependencies installed, styling configured, and (optionally) a Git repository initialized.


Features

  • Interactive CLI wizard powered by Inquirer.js
  • 5 project templates: Portfolio, E-Commerce, School Management, SaaS Dashboard, Blog/Magazine
  • 5 variant styles per template
  • 8 design systems (Minimal Clean, Dark Terminal, Glassmorphism, Brutalist, and more)
  • Dynamic dependency injection based on your choices
  • Handlebars-powered template compilation
  • Automatic npm install and optional git init
  • Naming collision resolution (no accidental overwrites)

Available Architectures

| Architecture | Value | Description | |---|---|---| | Next.js 14 — App Router | nextjs-monolith | Server Components, SSR/SSG, API routes. Recommended for most projects. | | Vite + React 18 — SPA | vite-react | Fast HMR, client-side only. Best for dashboards and internal tools. | | Turborepo — Monorepo | nextjs-turborepo | Multiple apps sharing a common design system. Enterprise-scale. |


Prerequisites

  • Node.js >= 18.0
  • npm >= 9.0
  • Git >= 2.30

Local Development & Testing

Clone the repository and test the CLI locally:

# Clone the repo
git clone https://github.com/Ebyte-Lab/opusify-cli.git
cd opusify-cli

# Install dependencies
npm install

# Run the interactive wizard
node index.js

This launches the full wizard. Follow the prompts to generate a project in the current directory.

To link it globally for testing as a CLI command:

npm link
opusify create

Quick Start (Published Package)

npx opusify create

Project Structure

opusify-cli/
├── index.js              # CLI entry point (wizard prompts)
├── src/
│   ├── generate.js       # File generation engine
│   ├── dependencies.js   # Dynamic dependency resolver
│   └── security.js       # Security hardening (WIP)
├── templates/            # Handlebars-powered project templates
├── package.json
└── README.md

How It Works

  1. The wizard collects your configuration (template, architecture, design, nav count, etc.)
  2. The engine resolves the template path (local in dev, GitHub via tiged in production)
  3. Template files are copied and Handlebars tags ({{projectName}}, {{design}}, etc.) are compiled with your config
  4. Dependencies are dynamically injected based on your design system and sidebar choices
  5. npm install runs automatically
  6. A Git repo is optionally initialized with an initial commit

License

MIT © Ebyte Soft Lab