moon-cycle/.github/wiki/api/variables/SYNODIC_MONTH.md
Aric Camarata 208f7ffba1 docs: add TypeDoc API generation (typedoc@0.28.19 + typedoc-plugin-markdown@4.11.0)
Add typedoc and typedoc-plugin-markdown as devDependencies. Add typedoc.json config
targeting src/index.ts with markdown output to .github/wiki/api. Add docs script to
package.json. Generate initial API reference pages.

Part of T-E8-03 — TypeDoc automation for all 12 JS/TS packages.
2026-05-30 16:42:00 -04:00

770 B

moon-cycle v2.0.0


moon-cycle / SYNODIC_MONTH

Variable: SYNODIC_MONTH

const SYNODIC_MONTH: 29.53058821398858 = 29.53058821398858

Defined in: types.ts:51

Length of one synodic month in days.

IAU mean value at J2000.0. Used by cycleMonth to divide the elapsed time into a fractional position within the current lunar cycle.

Example

import { SYNODIC_MONTH } from 'moon-cycle';
// Days old: how far into the current cycle
const now = new Date();
const elapsed = (now.getTime() - MONTH_ANCHOR.getTime()) / 86400000;
const age = ((elapsed % SYNODIC_MONTH) + SYNODIC_MONTH) % SYNODIC_MONTH;