Quickstart

Usage Examples

If youโ€™re new to the domain, read:

Numerology (life path)

import { calculateKaabalisticLifePath } from 'kaabalah/numerology';

const lifePath = calculateKaabalisticLifePath(new Date('1990-06-15'));

console.log(lifePath.lifePath.reducedValue);
console.log(lifePath.syntheses.finalSynthesis);

Gematria (text โ†’ number)

import { calculateGematria } from 'kaabalah/gematria';

const gematria = calculateGematria('DAVID');

console.log(gematria.synthesis.originalSum);
console.log(gematria.vowels.originalSum);
console.log(gematria.consonants.originalSum);

Tarot (shuffle + draw)

Astrology (birth chart)


ko-fiarrow-up-right

Last updated