Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@medplum/fhirpath

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@medplum/fhirpath

Medplum FHIRPath Library

  • 0.9.6
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

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

Keywords

FAQs

Package last updated on 20 May 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc