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

@vjixy/vibel

v1.0.2

Published

Vibe Launcher CLI project manager

Readme

Vibe Launcher

A lightweight local launcher for all your vibe-coded apps.
Centralize every project, run commands, and open your IDE — all from one clean UI.

npm version npm downloads license node


What is Vibe Launcher?

If you vibe-code a lot, you end up with dozens of projects scattered across your machine. Vibe Launcher gives every project a permanent home — a local web dashboard where you can launch servers, open editors, and organize everything by category without touching the terminal.

No cloud. No account. Just a single vibel command.


Features

| | | |---|---| | 🗂️ Category workspaces | Group projects into custom categories. Create and delete them from the sidebar. | | ▶️ One-click run | Define multiple named commands per project. Each runs in its own terminal window. | | 🛑 Stop running processes | Kill any running command directly from the UI. | | 🖥️ IDE launcher | Open any project in VS Code, Cursor, Windsurf, or any CLI editor. | | 📌 Pin favorites | Pin important projects to always float to the top of the grid. | | 🌗 Light & dark mode | Toggle themes. Preference saved across sessions. | | 🖱️ Drag to reorder | Rearrange the project grid by dragging cards. Order is persisted. | | 📝 Project notes | Add free-text notes to any project, shown as a preview on the card. | | 🔍 Live search | Instantly filter across project names, paths, categories, and notes. |


Installation

Global install (recommended)

Install once, run from anywhere:

npm install -g @vjixy/vibel

Then start it:

vibel

Open http://localhost:3000 in your browser.


Local / development

git clone https://github.com/vjixy/VibeLauncher.git
cd VibeLauncher
npm install
npm start

Usage

  1. Click New Project in the top-right corner.
  2. Fill in the project name, absolute path, and IDE command (code, cursor, windsurf, …).
  3. Add one or more run commands — give each a short label (e.g. frontend, backend).
  4. Assign one or more categories from the searchable dropdown, or create a new one inline.
  5. Save — your project card appears in the grid.

From the card you can:

  • ▶ Run any command — opens a new terminal window in the project directory.
  • ■ Stop a running command.
  • Open in IDE — one click.
  • Pin the project to keep it at the top.
  • Drag to reorder.
  • Edit / Delete via the hover action buttons.

To create a new category without adding a project first, click the + button next to Workspaces in the sidebar.


Project structure

VibeLauncher/
├── public/
│   ├── index.html      # Single-page UI
│   ├── style.css       # Design system & component styles
│   └── app.js          # Client logic, multi-select, drag & drop
├── server.js           # Express API + command execution
├── projects.json       # Local database (auto-created, gitignored)
├── package.json
└── README.md

Data is stored locally in projects.json alongside server.js. No database, no cloud, no telemetry.


Tech stack

  • Runtime — Node.js
  • Server — Express
  • Frontend — Vanilla HTML + CSS + JavaScript (zero build step)
  • IconsPhosphor Icons
  • FontsInter via Google Fonts

Requirements

  • Node.js v16 or later
  • Windows (command execution uses cmd.exe — macOS/Linux support planned)

License

ISC