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

ex.rsvim

v0.2.3

Published

Ex commands plugin for Rsvim text editor

Readme

ex.rsvim

About

Implements Vim's builtin ex commands for Rsvim, provide a compatible user experience in command-line.

Installation

First go to Rsvim config home directory:

cd $XDG_CONFIG_HOME/rsvim
# or
cd $HOME/.rsvim

Then install with either git or npm:

Plugin version should be compatible with the Rsvim version, for example install ex.rsvim 0.1.x for Rsvim 0.1.x, ex.rsvim 0.2.x for Rsvim 0.2.x (or development branch if Rsvim didn't release v0.2 yet)

git

# tag v0.2.1
git clone --branch=v0.2.1 https://github.com/rsvim/ex.rsvim ex.rsvim

# main branch
git clone --branch=main https://github.com/rsvim/ex.rsvim ex.rsvim

npm

# version v0.2.1
npm install [email protected]

# latest version
npm install @rsvim/ex.rsvim

Setup

Setup in your config entry script:

import ex from "ex.rsvim";
ex.setup();

The setup function accepts an optional object, by default is:

const DefaultSetupOptions: SetupOptions = {
  force: true,
};

You can pass your custom options when setup:

import ex from "ex.rsvim";
ex.setup({
  // Your configurations here...
});

Command Index

There are a lot of ex commands, which cannot be done all at once. This section trace the status of each command with below symbols:

  • ✅ Almost compatible
  • 🔰 Basically usable
  • 🚧 Working in Progress
  • 🔴 Missing

| Status | Command | Alias | Description | Since Version | | ------ | ----------- | ----- | --------------------------------- | ------------- | | 🔰 | quit | q | Quit editor | v0.1 | | 🔰 | write | w | Save current buffer to filesystem | v0.1 | | 🔰 | writeQuit | wq | Save current buffer and quit | v0.2 |

Contribution

Contributions are always welcomed :)

Development Environment

Please setup the development environment with:

  1. Install mise.
  2. Run mise i to install python, node and other npm cli tools.
  3. Run npm i to install dependencies.

Here are some useful tools:

  • npm run prettier: Format source code.
  • npm run tsc: Compile typescript to javascript and .d.ts declarations.

The project structure is:

|-lib    // Compiled javascript files
|-src    // Typescript source files
|-types  // Typescript type declarations

Please DO NOT manually edit files under lib and types.

Supporting the Project

If you like RSVIM, please consider sponsoring it. Your support encourages contributors and maintainers of this project, and other fees or efforts spent on it.

License

Licensed under Vim License.