Practical recipes
Copy-paste workflows for building real features with Kaabalah.
Recipe: “profile” from name + birth date
import { calculateGematria } from 'kaabalah/gematria';
import { calculateKaabalisticLifePath } from 'kaabalah/numerology';
export function buildProfile(input: { name: string; birthDate: Date }) {
const name = input.name.trim().toUpperCase();
const gematria = calculateGematria(name);
const lifePath = calculateKaabalisticLifePath(input.birthDate);
return {
name,
lifePath: {
reduced: lifePath.lifePath.reducedValue,
synthesis: lifePath.syntheses.finalSynthesis,
},
gematria: {
total: gematria.synthesis.originalSum,
vowels: gematria.vowels.originalSum,
consonants: gematria.consonants.originalSum,
},
};
}Recipe: “daily numerology” (personal cycles)
Recipe: birth chart (timezone-safe)
Recipe: draw tarot cards
Recipe: build correspondences with the Tree of Life
Last updated