0.9.6 • Published 3 years ago

@medplum/fhirpath v0.9.6

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
3 years ago

Medplum FHIRPath Library

The Medplum FHIRPath Library is a pure TypeScript library for evaluating FHIRPath expressions.

Installation

Add as a dependency:

npm install @medplum/fhirpath

Basic Usage

import { Patient } from '@medplum/fhirtypes';
import { evalFhirPath } from '@medplum/fhirpath';

const patient: Patient = {
  resourceType: 'Patient',
  name: [
    {
      given: ['John'],
      family: 'Doe',
    },
  ],
  birthDate: '1980-01-01',
};

console.log(evalFhirPath('birthDate', patient));

About Medplum

Medplum is a healthcare platform that helps you quickly develop high-quality compliant applications. Medplum includes a FHIR server, React component library, and developer app.

License

Apache 2.0. Copyright © Medplum 2022

0.9.4

3 years ago

0.9.3

3 years ago

0.9.6

3 years ago

0.9.5

3 years ago

0.9.2

3 years ago

0.9.0

3 years ago

0.9.1

3 years ago

0.5.0

3 years ago

0.5.2

3 years ago

0.5.1

3 years ago

0.4.1

3 years ago

0.4.0

3 years ago

0.3.0

4 years ago