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

vimo-oss

v2.2.4

Published

VIMO — one-command start for the VIBE Marketing Operations platform. Installs, builds and launches VIMO locally; type `vimo` (or `VIMO`) anywhere to open it in your browser.

Readme

vimo-oss — one-command VIMO

VIMO is a marketing-operations platform with its own AI. This package is a thin launcher that installs and runs VIMO locally so anyone can start it without knowing how the pieces fit together. No git, no build tools, no API keys.

Quick start

npm i -g vimo-oss
vimo

On Windows you can type VIMO (any case) in cmd or PowerShell; on macOS and Linux both vimo and VIMO work after install.

On first run it downloads VIMO, installs its components, builds the app, starts it on a free port, and opens your browser. First run takes a few minutes; every later run is fast. Press Ctrl+C to stop.

From this repo (developers)

npm install
cd packages/cli && npm link
vimo

Or run the script directly: node packages/cli/bin/vimo.mjs. When run inside a VIMO checkout, it uses that checkout instead of downloading one — but note it starts the built production app (npm run build:app first if needed), not the dev servers. Use npm run dev at the repo root for development with hot reload.

Flags

| Flag | What it does | | ------------ | ------------------------------------------------------------------ | | --repo | Use a specific VIMO checkout instead of auto-detecting | | --port | Preferred port (default 3000; busy ports are skipped automatically) | | --no-open | Start without opening a browser | | --reset | Reinstall dependencies and rebuild from scratch | | --update | Refresh VIMO to the latest version (keeps your data and settings) | | --doctor | Check whether this computer is ready to run VIMO | | --version | Print the version | | --help | Show usage |

Where does VIMO live?

  1. --repo <path> if given,
  2. VIMO_HOME environment variable if set,
  3. the current directory, when it is a VIMO checkout,
  4. otherwise ~/.vimo (downloaded automatically on first run).

Your content, settings, and connected accounts live in <install>/data (SQLite). --update preserves them.

Requirements

  • Node.js 20–22 LTS ("Current" versions may need extra build tools for native modules).
  • Internet access for the first download.
  • Nothing else — no git, no Docker, no compilers on supported Node versions.