caelus 0.2.0 → 0.2.1
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/README.md +12 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -34,9 +34,13 @@ Moon to ~10″ via the analytic series. The 729 KB tier (1920–2080 JPL-fit Moo
|
|
|
34
34
|
|
|
35
35
|
## Usage
|
|
36
36
|
|
|
37
|
+
```bash
|
|
38
|
+
npm install caelus
|
|
39
|
+
```
|
|
40
|
+
|
|
37
41
|
```ts
|
|
38
42
|
import { Engine, fmtLon } from "caelus";
|
|
39
|
-
import { loadNodeData } from "caelus"; // Node only
|
|
43
|
+
import { loadNodeData } from "caelus/node"; // Node only
|
|
40
44
|
|
|
41
45
|
// Node: filesystem loader
|
|
42
46
|
const engine = new Engine(loadNodeData("./data", "embedded", "full"));
|
|
@@ -82,3 +86,10 @@ test/golden.test.ts conformance suite vs Python fixtures
|
|
|
82
86
|
sums in reverse); keep orders identical to the Python reference.
|
|
83
87
|
- All data is injected via `EngineData` — the core has zero I/O, zero deps,
|
|
84
88
|
and runs identically in browser, edge runtime, or Node.
|
|
89
|
+
|
|
90
|
+
## The caelus packages
|
|
91
|
+
|
|
92
|
+
- caelus — this package
|
|
93
|
+
- [caelus-birth](https://www.npmjs.com/package/caelus-birth) — local birth time + place → UT (charts take UT; use this)
|
|
94
|
+
- [caelus-wheel](https://www.npmjs.com/package/caelus-wheel) — React SVG chart wheel
|
|
95
|
+
- [caelus-mcp](https://www.npmjs.com/package/caelus-mcp) — MCP server, six chart tools over stdio
|