1.0.0 • Published 2 months ago

sdk-krotovsemen v1.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
2 months ago

sdk-krotovsemen

Sdk-krotovsemen is a Node.js module for performing astronomical calculations. It provides functions to calculate the position of the sun and moon, as well as the phase of the moon.

Installation

To install Astralizer, use npm: npm install sdk-krotovsemen

Usage

const astralizer = require('astralizer');

const date = new Date();

console.log('Sun position:', astralizer.calculateSunPosition(date));
console.log('Moon position:', astralizer.calculateMoonPosition(date));
console.log('Moon phase:', astralizer.calculateMoonPhase(date));