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

@flxify/cli

v1.2.0

Published

Terminal text utility with 112 transformation scripts, Vim keybindings, command palette, and 6 themes

Readme

@flxify/cli

A terminal-based text utility with 111 transformation scripts, Vim keybindings, and a command palette — the same power as flxify.dev, right in your terminal.

npm version License: MIT

Install

npm install -g @flxify/cli

Usage

flxify                         # Launch with empty editor
flxify file.txt                # Open a file
flxify --theme cyber-neon      # Launch with a specific theme

Features

  • 112 scripts — JSON formatting, Base64, hashing, case conversion, sorting, JWT decode, and more
  • Command palette (Ctrl+B) with fuzzy search across all scripts
  • Vim keybindings — Normal, Insert, Visual, and Visual-Line modes
  • 6 themes — Standard Dark/Light, Cyber Neon, Nordic Frost, Monokai Pro, OLED Stealth
  • File editing — open, edit, and save files with Ctrl+S
  • Unsaved changes protection — prompts before quitting with unsaved edits
  • Search/ in Normal mode for incremental search with n/N navigation

Key Bindings

| Key | Action | |-----|--------| | Ctrl+B or Ctrl+P | Open command palette | | Ctrl+S | Save file (prompts for filename if none open) | | Ctrl+T | Cycle theme | | Ctrl+Q or Ctrl+C | Quit | | i, a, o, O | Enter Insert mode | | Escape | Return to Normal mode | | v | Visual mode | | V | Visual Line mode | | dd, yy, p | Delete/yank/paste lines | | / | Search | | n / N | Next/previous search result | | u / Ctrl+R | Undo/redo |

Vim Command Mode

Press : in Normal mode to open the command bar:

| Command | Action | |---------|--------| | :w | Save file | | :wq | Save and quit | | :x | Save and quit (alias for :wq) | | :q | Quit (warns if unsaved changes) | | :q! | Force quit without saving |

Themes

Switch themes with Ctrl+T or launch with --theme <name>:

  • standard-dark (default)
  • standard-light
  • cyber-neon
  • nordic-frost
  • monokai-pro
  • oled-stealth

Theme preference is saved to ~/.config/flxify/config.json.

CLI Options

Usage:
  flxify [options] [file]

Options:
  -h, --help            Show help
  -v, --version         Print version
  -t, --theme <name>    Set theme on startup

Arguments:
  [file]                File path to open

How Scripts Work

Open the command palette (Ctrl+B), search for a script, and press Enter. The script transforms your editor content (or just the visual selection if one is active).

Scripts use the same API as the web app and VS Code extension:

function main(state) {
  state.text = state.text.toUpperCase();
}

Requirements

  • Node.js >= 18.0.0
  • A terminal with truecolor support (most modern terminals)

Related

License

MIT