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

node-jhora-monorepo

v1.0.0

Published

Node-Jhora is a high-precision, performance-oriented **Vedic Astrology (Jyotish)** engine for Node.js and TypeScript. It is structured as a monorepo containing specialized, lightweight packages for professional-grade astrology software.

Readme

Node-Jhora: Professional Vedic Astrology Monorepo

Node-Jhora is a high-precision, performance-oriented Vedic Astrology (Jyotish) engine for Node.js and TypeScript. It is structured as a monorepo containing specialized, lightweight packages for professional-grade astrology software.

Features

  • Precision Astronomy: Uses Swiss Ephemeris (WASM) for planetary positions (0.0001" accuracy).
  • Vedic Core: Ayanamsa support, Panchanga, and all 16 Divisional Charts (Vargas).
  • House Systems: Placidus, Whole Sign, Equal House, and more.
  • Jaimini System: 7 Chara Karakas, Rashi Drishti, Arudha Padas, and Chara Dasha.
  • KP System: Sign, Star, Sub, and Sub-Sub Lords with Ruling Planets.
  • Yoga Engine: Extensible engine to detect planetary combinations.
  • Predictive: Vimshottari, Yogini, and Narayana Dasha systems.
  • Analytics: Complete Shadbala and Ashtakavarga calculation.
  • Real-time Streams: Observable streams for planetary updates.

Packages

| Package | Description | | :--- | :--- | | @node-jhora/core | Core math, astronomoy, ephemeris engine, and Vedic foundations. (Detailed Docs) | | @node-jhora/analytics | Shadbala, Ashtakavarga, and Yoga engines. (Detailed Docs) | | @node-jhora/prediction | Dashas (Vimshottari, Yogini, Narayana) and Transit scanners. (Detailed Docs) | | @node-jhora/match | Kuta-based marriage compatibility (Porutham). (Detailed Docs) |

Detailed Technical Documentation

For in-depth explanations of the engine's internals, refer to the following guides:

Installation

# Core engine (Required)
npm install @node-jhora/core

# Feature packages (Optional)
npm install @node-jhora/analytics @node-jhora/prediction @node-jhora/match

Note: This project is pure ESM. Ensure your package.json has "type": "module".

Quick Start (Core Layer)

import { EphemerisEngine, DateTime } from '@node-jhora/core';

async function main() {
    const eph = EphemerisEngine.getInstance();
    await eph.initialize();

    const date = DateTime.fromISO('2000-01-01T12:00:00Z');
    const planets = eph.getPlanets(date);
    
    console.log("Sun Longitude:", planets.find(p => p.id === 0)?.longitude);
}

main();

Modules Guide

1. Analytics (Shadbala & Yogas)

import { calculateShadbala, YogaEngine } from '@node-jhora/analytics';
// Use with @node-jhora/core's ChartData

2. Predictive (Dashas & Transits)

import { generateVimshottari, NarayanaDasha } from '@node-jhora/prediction';

3. Matchmaking (Porutham)

import { PoruthamMatch } from '@node-jhora/match';
// match(boyNak, girlNak, boySign, girlSign)
const result = PoruthamMatch.match(0, 1, 1, 2); 

Contributing

We welcome contributions! The project uses an NPM workspaces monorepo structure.

Build all packages:

npm run build

Run all tests:

# Run tests for a specific package
npx jest --config packages/core/jest.config.js

License

Source Available - Commercial License Required. Copyright (c) 2026 Harieshwar Jagan Abirami. All Rights Reserved.

  • Public Access: Source code is available for inspection and education.
  • Restricted Use: Usage, distribution, and derivative works are strictly prohibited without a Commercial License.
  • Contact the owner to negotiate licensing terms. See LICENSE.