squarunblownett
v1.0.0
Published
Node.js module for lunar calendar calculations.
Downloads
5
Readme
Squarunblownett
Node.js module for lunar calendar calculations.
Installation
You can install this module via npm: npm install squarunblownett
Usage
const lunarUtils = require('lunar-calendar-utils');
// Get current lunar date
const currentLunarDate = lunarUtils.getCurrentLunarDate();
console.log('Current Lunar Date:', currentLunarDate);
// Get next full moon date
const nextFullMoonDate = lunarUtils.getNextFullMoonDate();
console.log('Next Full Moon Date:', nextFullMoonDate);