Package Exports
- babelfhir-ts
- babelfhir-ts/out/main.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (babelfhir-ts) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
BabelFHIR-TS
BabelFHIR-TS transforms FHIR® StructureDefinitions into production-ready TypeScript code with full type safety and built-in validation. Unlike generic FHIR type definitions, BabelFHIR-TS generates profile-aware interfaces that understand your Implementation Guide's constraints, extensions, and slicing rules.
Why BabelFHIR-TS?
The FHIR Challenge: Implementation Guides define strict profiles (e.g., US Core, German basisprofil) that constrain base FHIR resources with must-support elements, custom extensions, value set bindings, and cardinality rules. Existing TypeScript libraries can't capture these requirements when you need profile-specific types.
The BabelFHIR-TS Solution: Automatically generates TypeScript interfaces and validation logic directly from StructureDefinition JSON. Your IDE autocompletes must-support fields, flags missing extensions at compile-time, and validates FHIRPath invariants at runtime.
What you get
- Strongly typed interfaces that merge profile constraints with base FHIR types (built on
@types/fhir) - Runtime validation using FHIRPath expressions from the profile—no external validator required for basic checks
- Type-safe extension handling with proper slicing and nested extension support
- Random data builders for testing and development (when class generation is enabled)
- Zero manual mapping—consume any FHIR package or Implementation Guide directly from registries
Use it to build FHIR-compliant APIs, validate incoming resources against profiles, or generate type-safe client SDKs from Implementation Guides.
Key features
- 🎯 Profile-first design – generate interfaces that understand your IG's must-support elements, slices, and extensions
- ⚙️ CLI-first workflow – install globally or run with
npx; works against package archives, entire directories, or single.jsonprofiles - ✅ Built-in validation – every generated class includes an async
validate()function that executes profile constraints through FHIRPath (high-level checks only; see details below) - 🔌 Extension-aware – properly types extension slices, nested extensions, and sidecar
_fieldelements for primitive extensions - 📦 Package-friendly – re-embeds generated code back into
.tgzarchives or expands into a target folder for direct consumption - 🌐 Registry integration – download and process packages directly from Simplifier, HL7, or custom FHIR registries
- ♻️ Caching + cleanup – opt into
--no-cacheto remove temporary.cachedirectories after generation
Installation
Install globally (recommended when using the CLI frequently):
npm install -g babelfhir-tsOr invoke on-demand without a global install:
npx babelfhir-ts --helpRequirements: Node.js 18+ (ESM support) and an internet connection when downloading packages from remote registries.
Quick start
Generate code from a local folder that contains FHIR packages:
babelfhir-ts input/ output/Process a single package archive and write the generated interfaces back into a new .tgz file:
babelfhir-ts hl7.fhir.us.core-8.0.0.tgz us-core-generated.tgzDownload and process a package directly from a registry (defaults to https://packages.simplifier.net):
babelfhir-ts --package hl7.fhir.us.core@8.0.0Install a processed package into your current project:
babelfhir-ts install hl7.fhir.us.core@8.0.0After generation you can import the emitted classes:
import { USCorePatientClass } from "./output/USCorePatientClass";
const patient = USCorePatientClass.random();
const { errors, warnings } = await patient.validate();CLI reference
babelfhir-ts [options] [<input> [output]]| Argument / option | Description |
|---|---|
<input> |
Directory of FHIR packages/StructureDefinitions, single package (.tgz/.zip), or single StructureDefinition .json. Defaults to ./input when omitted. |
<output> |
Destination directory or archive. Defaults to ./output when omitted. |
install |
Downloads, processes, and installs a package as a project dependency. |
--package <pkg@version> |
Fetch a package from a registry and process it without manual download. |
--registry <url> |
Custom registry base URL (default: https://packages.simplifier.net). |
--log <level> |
Control logging output: none (default), console, or file. |
--no-cache |
Remove the .cache directory once generation completes. |
--no-classes |
Skip emitting helper classes (interfaces & validators only). |
-h, --help |
Print usage help. |
-v, --version |
Print the BabelFHIR-TS version. |
Supported inputs
- Directory – scan all
.tgz,.zip, or.jsonfiles inside the folder - Archive – process a FHIR NPM package in
.tgzor.zipformat - StructureDefinition JSON – generate code for a single profile definition
Generated output
For each StructureDefinition the generator produces:
*.tsinterface definitions (extending the canonical FHIR types)*Class.tscompanions that offer:- constructor helpers (
empty,random,randomClass) - deterministic field filling for required and must-support elements
validate()that evaluates FHIR invariant expressions viafhirpath
- constructor helpers (
- optional validation parity artefacts when you run the test suite (
npm test validatorParity)
The validator relies on fhirpath.evaluate(...) to enforce profile invariants (including min cardinalities, slices, and custom expressions) without requiring a full FHIR server. It intentionally performs high-level checks only: terminology expansion, reference resolution, and other server-backed logic are out of scope, so keep a downstream validator (e.g., the HL7 Java validator CLI) in your QA pipeline for full conformance.
Scripts for contributors
| Script | Purpose |
|---|---|
npm run generate |
Execute the CLI against the local input/ folder and refresh output/. |
npm run generate:check |
End-to-end check: generate, type-check, and lint the emitted output. |
npm test |
Type-check and run all Vitest suites (coverage enabled). |
npm run download-validator |
Fetch the official HL7 validation jar used for parity testing. |
Caching notes
The generator caches downloaded StructureDefinitions and packages inside .cache/. When you need a clean run, pass --no-cache or manually remove the folder. Temporary downloads land in .temp-* directories and are cleaned up automatically.
License
ISC © Maximilian Nussbaumer