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

easyvibecli

v0.2.0

Published

CLI tool to connect local projects to Component Hub platform

Readme

EasyVibeCli

A Node.js CLI tool that allows developers to connect their local frontend projects to the Component Hub platform and download prebuilt component code snippets.

Installation

Install globally via npm:

npm install -g easyvibecli

Quick Start

  1. Initialize your project configuration:
vibe init

This creates a .vibecode.json file with your platform settings:

  • Platform URL (default: https://app--component-hub-01919f93.base44.app)
  • Project ID
  • Access Key
  • Output format (react-tailwind, react-css, vue-tailwind, angular-css)
  1. Download components:
vibe pull Button
vibe pull Card
vibe pull Modal
vibe pull Input

Components are saved to src/components/ with metadata comments.

Commands

vibe init

Creates a .vibecode.json configuration file in your current directory through an interactive setup process.

vibe connect --key <accessKey>

Quick connect using an access key with default settings. This bypasses the interactive setup and creates a configuration file automatically.

Example:

vibe connect --key vibe_key_EqakZClOGwimmA382s25qayxAJ5XfxC8

vibe pull <component-name>

Downloads a specific component from the platform and saves it locally.

Examples:

vibe pull Button
vibe pull NavBar
vibe pull LoginForm

vibe pull-all

Downloads all available components from the platform in one command.

vibe debug-project [project-id]

Debug utility to inspect project component links and show available projects. If no project ID is provided, lists all available projects.

Examples:

vibe debug-project                    # List all projects
vibe debug-project second-qksmk5      # Debug specific project

Configuration

The .vibecode.json file contains:

{
  "platform": "https://app--component-hub-01919f93.base44.app",
  "projectId": "your-project-id",
  "accessKey": "your-access-key",
  "output": "react-tailwind"
}

Generated Components

Components are saved with metadata headers:

// vibe-source: https://app--component-hub-01919f93.base44.app/components/Button
// version: 1.0.0

export const Button = () => <button className="bg-blue-500 text-white py-2 px-4 rounded">Click Me</button>;

Error Handling

  • Missing configuration: Run vibe init first
  • Invalid component: Check available components with debug commands
  • Network issues: Check your platform URL and access key
  • Project linking issues: Use vibe debug-project to troubleshoot

Development

This CLI tool connects to the Base44-powered Component Hub platform. The structure is designed for scalability and easy integration with live APIs.

Project Structure

vibe-cli/
├── bin/vibe.js          # Main CLI entry point
├── lib/
│   ├── init.js          # Handles vibe init
│   └── pull.js          # Handles vibe pull
├── utils/
│   └── api.js           # API communication layer
└── package.json

License

MIT