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 🙏

© 2024 – Pkg Stats / Ryan Hefner

ritual

v0.7.0

Published

Database and API for enhancing history and clipboard processing

Downloads

25

Readme

ritual

npm package version

Database and API for enhancing command line history, common paths and files, and clipboard handling.

Installation

The server is configured via environment variables.

  • RITUAL_PORT: set this to the TCP port you want to listen on.
    • Defaults to 7483 ("RITE" on a telephone's keypad).
  • RITUAL_VERBOSE: set this to '1' (or anything except the empty string) to increase the logging threshold to 'debug'.
    • Defaults to 'info'.
  • RITUAL_HOST: set this to the IPv4 address to listen on.
    • Defaults to '127.0.0.1'.

Load bash integration by putting the following in your ~/.bashrc or somewhere:

source ~/github/ritual/install/ritual.bash

Run at load:

cp install/github.chbrown.ritual.plist ~/Library/LaunchAgents/github.chbrown.ritual.plist
launchctl load ~/Library/LaunchAgents/github.chbrown.ritual.plist

When running under launchctl, there are two useful commands:

To kill the ritual server process until the next system boot:

launchctl remove github.chbrown.ritual

To restart it:

launchctl stop github.chbrown.ritual

Calling stop kills the current process, but launchd will immediately restart it since the launchd config file, github.chbrown.ritual.plist, has KeepAlive set to true.

IPC

I've chosen TCP for inter-process communication. Linux supports IPC message queues at some level, but there doesn't appear to be a trivial way to add messages to the queue via the command line.

Meanwhile, bash makes TCP requests easy with its echo 'hello' > /dev/tcp/<host>/<port> syntax.

The Ritual TCP server is obligated to return one (new)line for every line that it receives. If it does not, the client may hang, waiting for a response.

Ideas / TODO

  • Maybe load top 10 paths into $CDPATH?
  • Smarter path selection (right now it only selects the most recent exact match)
    • Exclude current path from candidates
    • Weight directories that have been recently used higher
    • Weight directories that have been frequently used higher
  • Add weight for directories successfully fetched with j or, more generally, get_directory.
  • Add clipboard watching
  • Add shell history watching
  • Prune directories that don't exist, or maybe just skip them in case they are mounted directories that may exist again.
  • There are a lot of good ideas on the iTerm2 shell integration page which seem to me like overkill for a terminal GUI, and much more suited to a third party service (like ritual).
  • Maybe use a coproc in the shell script instead of kicking off a new subshell whenever the bash user enters a ritual command?

Examples

Want to grab the matching directories for several queries at once?

echo $'q\ntmp\nmovies\nnode' |\
  sv --json |\
  jq -c '{action: "get_directory", q: .q}' |\
  ritual_tcp

Replace a substring with another substring, e.g., after moving a common directory:

ritual_replace "/github/business-" "/business/"

Autojump import

cat <(echo $'score\tpath') <(sort -g ~/.local/share/autojump/autojump.txt) |\
  sv --json |\
  jq -c '{action: "add_scored_directory", score: .score | tonumber, path: .path}' |\
  ritual_tcp

License

Copyright 2015-2017 Christopher Brown. MIT Licensed.