Numerology
Import
import { calculateKaabalisticLifePath, calculateStraightAcrossReductionLifePath, calculateCycles, ... } from 'kaabalah/numerology';Exports
calculateKaabalisticLifePathcalculateStraightAcrossReductionLifePathcalculateCyclescalculateChallengescalculateFibonacciCyclecalculatePersonalCyclesgetDateEnergiesisMasterNumber
Life Path Calculation Methods
Kaabalistic Method
The calculateKaabalisticLifePath function uses a synthesis-based approach that:
- Preserves master numbers (11, 22, 33, 44, etc.)
- Calculates personal mythology numbers
- Provides detailed reduction steps
Straight Across Reduction
The calculateStraightAcrossReductionLifePath function uses the traditional method of reducing each component (day, month, year) before summing.
Usage Example
import { calculateKaabalisticLifePath, calculateCycles } from 'kaabalah/numerology';
const birthDate = new Date('1990-06-15');const lifePath = calculateKaabalisticLifePath(birthDate);
console.log(lifePath.lifePath.reducedValue); // Life path numberconsole.log(lifePath.syntheses.finalSynthesis); // Final synthesisconsole.log(lifePath.personalMythologyNumbers); // Personal mythologyLive example
Try Numerology Interactive numerology calculator