This library provides utilities to convert SATCAT.dat, TLE, and VCM messages from Space Force Legacy Formats into the SpaceDataStandards format, returning plain JavaScript objects (FlatBuffer generation has been removed).
The project now ships as pure ES modules—no build or transpile step is required. Everything under src/ is published directly to npm, with the package entry point exposed as src/main.mjs.
import { parse, LegacyFormat, SerializationFormat } from "spacedataparsers";<script type="module">
import { parse, LegacyFormat } from "spacedataparsers/browser";
// ...
</script>Run the lightweight Node-based harness (uses small inline fixtures) with:
npm testThis project is released under the MIT License.