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

@seawork/sv

v0.1.1

Published

sv — SeaDB CLI & SDK (TypeScript)

Readme

@seaverse/sv

SeaDB CLI & TypeScript SDK — semantic document store with full-text search, version history, and Ed25519 device auth.

Install

npm install -g @seawork/sv   # global CLI
npm install @seawork/sv      # SDK in your project

CLI Quick Start

# Register this device (uses ~/.ssh/id_ed25519)
sv auth register --auto

# Documents
sv write kb/hello "My first note."
sv read  kb/hello
sv edit  kb/hello --section "Introduction" < new-intro.md
sv sed   kb/hello 's/old/new/g'
sv append kb/hello "## Updates\nNew content."
sv delete -y kb/hello

# Search & list
sv search "rust async"
sv ls kb/

# Version history
sv log kb/hello
sv rollback kb/hello --version 42   # ID from 'sv log'

# Primitives
sv incr conv:123 seq
sv kv set config/theme dark
sv kv get config/theme
sv stream append events/feed '{"type":"click"}'

# Org
sv org create myteam
sv org invite myteam
sv auth join-org <invite_key>
sv whoami

Environment Variables

| Variable | Default | Description | |-------------|--------------------------------------|--------------------------| | SEADB_URL | https://api.seadb.seaverse.cloud | Server URL | | SEADB_ORG | — | Default org for commands |

SDK Usage

import { request, cmdWrite, cmdRead, cmdSearch } from '@seawork/sv';

const client = { baseUrl: 'https://api.seadb.seaverse.cloud' };

// Write a document
await cmdWrite(client, 'kb/hello', { content: '---\ntitle: Hello\n---\nContent.' });

// Read it back
await cmdRead(client, 'kb/hello', {});

// Search
await cmdSearch(client, 'rust async', { limit: 10 });

// Raw HTTP request (authenticated)
const resp = await request(client, { method: 'GET', path: '/kb/hello' });
console.log(resp.text);

Auth in SDK context

The SDK uses the same device identity as the CLI (~/.config/sv/). On first use it auto-registers via ~/.ssh/id_ed25519. For CI/headless environments:

import { cmdAuthRegister } from '@seawork/sv';
await cmdAuthRegister('https://api.seadb.seaverse.cloud', { auto: true, label: 'ci' });

Or use sv auth delegate to create a scoped delegation token for CI.

Document Format

Documents are path-addressed Markdown with YAML frontmatter:

---
title: My Document
tags: [rust, async]
---

Content goes here.

The title field is required. Plain-text writes get frontmatter injected automatically.

Path Namespaces

| Prefix | Scope | |--------------|------------------------------| | kb/ | Personal knowledge base | | @myteam/ | Org namespace (with --org) | | global/ | Read-only global namespace |