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

neemee-cli

v0.3.2

Published

Command-line client for the Neemee notes API

Readme

neemee-cli

Command-line client for the Neemee notes API.

Install

npm install -g neemee-cli

Requires Node.js 18+.

Setup

Generate an API key at neemee.app/settings → API Keys (select read and/or write scopes). The CLI looks for a key in this order:

  1. NEEMEE_API_KEY environment variable (recommended for shells/scripts/CI)
  2. ~/.config/neemee/config.json (set via neemee config set-key)

Option 1 — environment variable (add to ~/.zshrc or ~/.bashrc):

export NEEMEE_API_KEY="your-api-key-here"
# Optional: override base URL (default: https://neemee.app)
# export NEEMEE_BASE_URL="http://localhost:3100"

Option 2 — config file:

neemee config set-key <your-api-key>

Then verify:

neemee config whoami

Commands

Notes

neemee notes list [--search <q>] [--notebook <id>] [--limit 20] [--page 1]
neemee notes get <id>
neemee notes create --content "My note content" [--title "Title"] [--url <url>] [--notebook <id>]
neemee notes update <id> --content "Updated content" [--title "..."] [--url <...>] [--notebook <id|none>]
neemee notes delete <id>

Note: notes update requires --content — the REST API treats content as mandatory on PUT even for a title-only edit.

Notebooks

neemee notebooks list [--search <q>] [--limit 20] [--page 1]
neemee notebooks get <id>
neemee notebooks create --name "My notebook" [--description "..."]
neemee notebooks update <id> [--name "..."] [--description "..."]
neemee notebooks delete <id>

Search

Shortcut for notes list --search:

neemee search "<query>"

Searches across content, note title, URL, source domain, notebook name, and frontmatter values. To search notebooks instead, use neemee notebooks list --search "<query>".

Frontmatter format guide

neemee frontmatter-guide [--type basic|research|task|article]

Prints a reference guide with examples for the YAML frontmatter format Neemee uses on notes.

Configuration

neemee config set-key <key>    # Store your API key
neemee config set-url <url>    # Override base URL (default: https://neemee.app)
neemee config show             # Show current config (key masked)
neemee config whoami           # Verify key and show user info

Config is stored at ~/.config/neemee/config.json.

Scopes

API keys have one or more scopes that control access:

| Scope | Access | | ------ | --------------------------------------------------------- | | read | GET endpoints only | | write| POST, PUT, DELETE + all read operations | | admin| All operations (future use) |

Development

npm install
npm run build
node dist/index.js --help

For local development against a Neemee instance running on a non-default port:

neemee config set-url http://localhost:3100

API Reference

Full REST API documentation: neemee-frontend/docs/api/REST_API.md

License

MIT