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

interodreams

v0.1.0

Published

Command-line access to the Intero Dreams dream-symbol library and dream interpreter.

Readme

interodreams

Command-line access to the Intero Dreams dream-symbol library and dream interpreter.

No API key. No account. No dependencies.

npx interodreams symbol snake
npx interodreams interpret "I was flying over a city at night"

Or install it:

npm install -g interodreams

Commands

| Command | What it does | | --- | --- | | interodreams symbol <name> | What a symbol means. snake, "Broken Teeth", or a full URL. | | interodreams interpret <text> | Interpret a dream. Reads stdin if the text is omitted. | | interodreams symbols | Every published symbol. | | interodreams themes | Symbols grouped by emotional pattern. | | interodreams categories | Symbols grouped by kind. | | interodreams api | The service index: endpoints, limits, error format. |

Options

| Option | | | --- | --- | | --json | Machine-readable output. Valid JSON on success and on failure. | | --perspective <lens> | Modern (default), Freudian, Jungian, Universal. | | --mood <mood> | Mood to interpret against. Default Neutral. | | --recurring | Mark the dream as recurring. | | --lucid | Mark the dream as lucid. | | --base-url <url> | Point at a different deployment. | | --quiet | Suppress the rate-limit note. |

For scripts and agents

--json always emits one JSON object, including when the request fails, so a caller never has to parse English to find out what happened:

$ interodreams symbol not-a-real-symbol --json
{
  "ok": false,
  "code": "not_found",
  "message": "No such page.",
  "hint": "Check the name against `interodreams symbols`. Retrying will not help.",
  "status": 404,
  "retryable": false,
  "retryAfterSeconds": null
}

retryable is the field to branch on. It is false for anything that will fail identically no matter how long you wait — a bad slug, a body that does not validate, text that is not a dream.

Exit codes:

| Code | Meaning | | --- | --- | | 0 | Success | | 2 | Usage error — bad flag, missing argument | | 3 | The API refused the request | | 4 | Rate limited (Retry-After is in the JSON) | | 5 | Could not reach the host |

The rate-limit note goes to stderr, so interodreams symbol owl > owl.md writes only the document.

Rate limits

Reading content is limited generously. Interpretation is 1 per UTC day for anonymous callers and 10 per 24h for signed-in accounts — this CLI is anonymous, so it gets the former.

Every response carries RateLimit-Remaining and RateLimit-Reset; the CLI surfaces them when the allowance runs low, and a 429 carries Retry-After.

Use as a library

import { InteroDreams } from "interodreams";

const client = new InteroDreams();
const markdown = await client.symbol("owl");
console.log(client.lastRateLimit); // { limit, remaining, resetSeconds, policy }

What this is not

Intero Dreams is not a medical or psychiatric service. Interpretations are for reflection and education. If a dream is connected to distress, a sleep disorder, or a crisis, talk to a qualified clinician.

Links

MIT licensed.