🔢 Numerology
Life path, cycles, challenges, and personal mythology calculations
The de-facto library for esoteric calculations and tooling
npm install kaabalahpnpm install kaabalahyarn add kaabalah🔢 Numerology
Life path, cycles, challenges, and personal mythology calculations
✡️ Gematria
Hebrew letter values with reverse gematria lookup
🌟 Astrology
Birth charts and planetary positions via Swiss Ephemeris
🃏 Tarot
78 cards with meanings, spreads, and interpretations
🐚 Ifa
Odu calculations based on dates for Ifa divination
🌳 Core
Tree of Life system linking all esoteric correspondences
import { calculateGematria } from 'kaabalah/gematria';import { calculateKaabalisticLifePath } from 'kaabalah/numerology';
// Calculate gematria for a nameconst gematria = calculateGematria('DAVID');console.log(gematria.synthesis.originalSum); // 25
// Calculate life path from birth dateconst lifePath = calculateKaabalisticLifePath(new Date('1990-06-15'));console.log(lifePath.lifePath.reducedValue);Tree-Shakable
Import only what you need. Each module is independently tree-shakable for optimal bundle size.
TypeScript First
Full TypeScript support with comprehensive type definitions for all functions and return values.