jamiblossom
v0.1.0
Published
WASM-first Zi Wei Dou Shu and East Asian calendar charting library.
Readme
jamiblossom
WASM-first Zi Wei Dou Shu and East Asian calendar charting library.
Install
pnpm add jamiblossomUsage
import { calculateZiweiChart } from 'jamiblossom';
const chart = calculateZiweiChart({
calendar: 'solar',
date: '1990-1-1',
time: '12:00',
gender: '남',
language: 'ko-KR',
});WASM Core
The Rust core lives under wasm/ and is built with wasm-pack.
pnpm --filter jamiblossom buildAfter building, load the generated WASM module:
import { loadJamiBlossomWasm } from 'jamiblossom/wasm';
const engine = await loadJamiBlossomWasm();
const normalized = engine.normalizeRequest({
calendar: 'solar',
date: '1990-1-1',
time: '12:00',
gender: '남',
});