ascii-side-of-the-moon 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +15 -0
- package/LICENSE +21 -0
- package/README.md +35 -0
- package/dist/index.cjs +791 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +48 -0
- package/dist/index.d.ts +48 -0
- package/dist/index.js +791 -0
- package/dist/index.js.map +1 -0
- package/package.json +73 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [1.0.0] - 2024-12-19
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- Initial release
|
|
12
|
+
- Moon phase, size, and libration calculations
|
|
13
|
+
- Unicode terminal renderer
|
|
14
|
+
- Zero runtime dependencies
|
|
15
|
+
- Astronomy engine integration for accurate calculations
|
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024 Alex Yankov
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# WHAT
|
|
2
|
+
|
|
3
|
+
`ascii-side-of-the-moon` is a small library that prints an ascii representation of the moon on a given date.
|
|
4
|
+
|
|
5
|
+
## Example
|
|
6
|
+
|
|
7
|
+
```js
|
|
8
|
+
import { getMoonState, renderMoon } from 'ascii-side-of-the-moon';
|
|
9
|
+
|
|
10
|
+
// Get moon state for January 1st, 2025
|
|
11
|
+
const date = new Date(2025, 0, 1); // Note: month is 0-based in JavaScript
|
|
12
|
+
const moonState = getMoonState(date);
|
|
13
|
+
|
|
14
|
+
// Render the moon's ASCII representation
|
|
15
|
+
const moonAscii = renderMoon(moonState);
|
|
16
|
+
|
|
17
|
+
// Print to console
|
|
18
|
+
console.log(moonAscii);
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
## Local Demo
|
|
22
|
+
Inside of repository for `ascii-side-of-the-moon`.
|
|
23
|
+
|
|
24
|
+
Render a single date:
|
|
25
|
+
```sh
|
|
26
|
+
pnpm run render:demo 2025-01-01
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
Render an animation:
|
|
30
|
+
```sh
|
|
31
|
+
pnpm run render:demo_animate 2025-01-01 2025-12-30
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## Char aspect ratio.
|
|
35
|
+
This package assumes a character ratio of 10/22.
|