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

@sisyphuseditor/sisyphus

v0.2.0

Published

A local-first, append-only writing surface.

Readme

Sisyphus

A local-only, append-only document prototype. Pages grow by adding immutable rich-text blocks; favorites are also recorded as immutable events.

Install it

Requires Node.js 22.12 or newer.

Install Sisyphus as a permanent command:

npm install --global @sisyphusvault/sisyphus
sisyphus

Or launch it without a permanent global install:

npx @sisyphusvault/sisyphus

Electron downloads the runtime for the current Linux, Windows, or macOS system during installation or first launch. The SQLite database is stored in Electron's per-user application data directory as sisyphus.sqlite.

Develop it

npm install
npm run dev

Shape of the app

The renderer is an isolated React + Tiptap surface. A narrow, typed preload bridge is the only way it can ask the Electron main process to read or append SQLite data; Node integration stays disabled and the renderer stays sandboxed.

The database has five append-only records:

  • pages owns page identity and creation time.
  • blocks stores the special page-title block at sequence 0, followed by immutable text blocks.
  • amendments links an immutable source block to a later replacement block without changing either one.
  • favorite_events stores every favorite/unfavorite choice as a new event instead of updating a block.
  • page_deletion_events hides a page through an immutable event while preserving its page and block records.

SQLite triggers reject UPDATE and DELETE on all five. An insert trigger adds block title/body text to an external-content FTS5 index.

Bounded rendering

Opening a page fetches its title plus the latest 24 text blocks. Jumping to a title, day, favorite, or search hit fetches 10 blocks on either side of that anchor. “Load earlier/newer” shifts the bounded window without accumulating the whole page in the DOM. The append composer appears only when the window reaches the newest block, preserving top-to-bottom chronology.

Tiptap is used instead of CodeMirror because the body is a structured rich-text document rather than source code. JSON is stored as the canonical body; plain text is derived in the main process for FTS5.

Verify it

npm test
npm run build

First-slice boundaries

  • Rich text includes links, lists, quotes, tables, images by URL, and code blocks.
  • Existing blocks and page titles cannot be edited. A text block can be superseded by a linked, later amendment, and its body can be copied as Markdown. Pages can be hidden through an append-only deletion event.
  • Opening a page loads the title plus the newest 24 blocks. Anchor jumps load a bounded window around the target.
  • Search uses SQLite FTS5 with prefix matching, title weighting, and snippets across one page or all pages.
  • Favorites are listed across visible pages and can be filtered to the current page in the sidebar.
  • File attachment import, export, backups, native installers/signing, and collaboration are intentionally not part of this prototype.