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

@cacilie/basho

v1.0.0

Published

Minimalist Zen CLI word processor.

Readme

Basho ── Minimalist Zen CLI Word Processor

“An ancient pond... The frog leaps in. Go in peace.”

Basho is a minimalist, distraction-free command-line word processor built with Node.js. It features a zero-dependency architecture reflecting Zen opinions of simplicity, quietness, and high performance.


Features

  • Distraction-Free Canvas: Vertical page border margins (A4 aspect look) on large screens.
  • Dynamic Margins: Auto-collapses borders in narrow terminals to maximize workspace.
  • Zen Mode: Hides the status line completely for an empty screen editing experience.
  • Zen Welcomes: Displays random public domain haikus by Matsuo Basho on start.
  • Self-Contained Configuration: Customizable settings stored inside the project.

Installation

Install globally from npm:

npm install -g @cacilie/basho

Usage

Start writing in the terminal:

# Start a fresh document (shows the Zen splash welcome screen first)
basho

# Open or create a specific document
basho my_poem.txt

Keyboard Shortcuts

Press Ctrl+H or F1 inside the editor to toggle the help overlay.

| Key | Description | |---|---| | Arrows | Navigate document | | Home / End | Go to start / end of a line | | PageUp / PageDown | Scroll screen up / down | | Tab | Insert soft tab (2 spaces) | | Ctrl + S | Save current file | | Ctrl + P or Esc | Command Mode. Opens command bar at the bottom (/) | | Ctrl + H or F1 | Toggle Help Overlay | | Ctrl + Q or Ctrl + C | Exit editor (shows unsaved changes prompt if modified) |


Slash Commands

Press Ctrl+P or Escape to open the command prompt:

  • /save [filename] (or /w): Saves document to disk.
  • /quit (or /q): Exits the editor.
  • /help: Opens the help map.

Customization

Your preferences are saved in the project's config file at: lib/settings/settings.json

Supported properties:

  • margin (number, default 12): Side margin column spacing on wide terminals.
  • zenMode (boolean, default false): Toggles Zen mode by default.
  • theme (string, default "green"): Border theme color (green | cyan | yellow | blue | magenta | white | gray).
  • showHaikuOnStartup (boolean, default true).