@nhealth/fhir
v0.3.2
Published
FHIR core implementation for nHealth applications
Readme
@nhealth/fhir
FHIR core module for Nuxt — FHIR client, auto-generated types, and SMART on FHIR authentication.
See the root README for a full overview. Detailed documentation is in the docs/ directory:
- FHIR Client —
useFhirClient(),useFhirServer(), all operations and configuration - SMART on FHIR — authentication flow,
useSmartAuth(), API routes, security - Profiling & Type Generation — FHIR packages, local IGs, generated types
Installation
pnpm add @nhealth/fhir// nuxt.config.ts
export default defineNuxtConfig({
modules: ['@nhealth/fhir'],
fhir: {
client: { serverUrl: 'https://your-fhir-server.example.com/fhir' },
},
})