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

kriya-ephemeris-stars

v0.1.2

Published

Browser-shippable fixed-star catalog, precession, and paran (Brady) computation. Companion to kriya-ephemeris -- separate package so pros who don't use the Stars tab don't pay its bundle-size cost.

Readme

kriya-ephemeris-stars

Browser-shippable fixed-star catalog, precession, and paran (Bernadette Brady framework) computation, factored out of the Kriya astrology API engine. A separate package from kriya-ephemeris (its peer dependency) so pros who don't use the Stars tab don't pay its bundle-size cost.

Status

v0.1.0 — full offline closure for the fixed-star feature.

Surface

Single entry point (kriya-ephemeris-stars), re-exporting:

  • CatalogFIXED_STARS (159 stars: 4 Royal Stars, 3 galactic anchors, plus other named bright stars), STAR_COUNT (the single source of truth for the catalog size — don't hardcode the count anywhere else; a stale "200+" figure and a couple of stale "158"/ "160" figures were found drifting across this repo's docs during this extraction, precisely because it was hardcoded in multiple places instead of computed once).
  • Precession + positionsfixedStarPosition, allFixedStarPositions. Uses a linear IAU general-precession-rate approximation (~50.29"/tropical year, longitude only — latitude drift is negligible over historical timescales for astrological purposes). Not a full IAU 2006/Vondrák rotation-matrix precession; no per-star proper motion. Matches the engine's original implementation exactly (byte-identical output, see Parity below).
  • ConjunctionsfixedStarConjunctions(points, jdTT, orbDeg?).
  • ParanslstForAngle, findParans, findPairParans (the Brady paran framework: latitudes where a star and a chart point are simultaneously on an angle).

Out of scope (server-only via the API)

  • Chart-assembly glue (computeFixedStarsForChart, computeChartParans in the engine's lib/api/compute-phase8b.ts) — stays engine-side, same boundary as kriya-ephemeris's own chart-compute glue.

Sourcing

Catalog positions cross-referenced against the Yale Bright Star Catalogue and ESA's Hipparcos catalogue (both public domain). Interpretive text draws on Vivian Robson's 1923 work (public domain since 1979) and Ebertin-Hoffmann, written as original paraphrase, not reproduction, of either.

Engine integration

The engine consumes this package in place of the code that used to live in lib/ephemeris/stars/{index,catalog.data,parans}.ts. Bridge files at the original paths re-export the package surface, so existing engine call sites are unchanged.

Parity guarantee

Every export of this package produces byte-identical output to the engine's pre-carve-out implementation — the catalog data file was copied verbatim (not retyped), and the precession/paran logic is unchanged arithmetic with only its import paths repointed at kriya-ephemeris directly (previously via bridge re-exports). Parity is locked in by the engine's existing test suite (1,398 tests, including exact-value assertions on Regulus's longitude, the Galactic Center's position, and the precession drift rate), all of which pass unchanged against the bridge.