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

@mymehq/sync

v0.11.0

Published

Headless engine that keeps one or more local folders two-way synced with a Myme server. Ships the `myme-sync` CLI; the engine is also a library consumable over its loopback HTTP control surface.

Readme

@mymehq/sync

Headless engine that keeps one or more local folders two-way synced with a Myme server. Watches the disk, listens to the server's SSE stream, reconciles both directions with conflict detection.

The engine is UI-agnostic — a CLI ships in this package and drives the engine over a loopback HTTP control surface; menu-bar and desktop UIs use the same surface.

Install

npm install -g @mymehq/sync

Quick start

myme-sync start <folder> --url <api-url> --key <api-key>

Subsequent roots can be added at runtime:

myme-sync roots add <path>
myme-sync status

--daemon writes a launchd plist (macOS) so the engine survives terminal sessions. Run myme-sync --help for the full command list.

Mapping rules

<root>/.myme/mappings.json (optional) decides what type each file becomes when synced. Resolution order, first match wins:

  1. Frontmatter type: if present (text files only)
  2. User rules from mappings.json
  3. Built-in mime defaults (image/*core.file.image, audio, video)
  4. Fallback: core.file

Example — promote any .md file in Notes/ to core.note, populating title from the first H1, body from everything after the frontmatter, and tags from the frontmatter:

{
  "rules": [
    {
      "id": "notes",
      "match": { "glob": "Notes/**/*.md" },
      "transform": {
        "type": "core.note",
        "tier": "library",
        "propertyExtractors": [
          { "kind": "first-h1", "into": "title" },
          { "kind": "body-after-frontmatter", "into": "body" },
          { "kind": "frontmatter-key", "key": "tags", "into": "tags" }
        ]
      }
    }
  ]
}

Match predicates: glob, mime, frontmatter (key/value match, or true for presence). All present predicates AND together.

Configuration

The agent merges configuration from three sources (highest priority first):

  1. CLI flags--url, --key, --types
  2. Environment variablesMYME_API_URL, MYME_API_KEY
  3. Config file~/.myme/sync.json

Requires @mymehq/sdk@^4.0.0. Items are stamped with origin: "user"; the API key should be issued from a credential with default_origin: "user".

More

Full per-root layout, mapping internals, the loopback HTTP control surface, and conflict-resolution semantics live in the repository.