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

blue-button-fhir

Package Overview
Dependencies
Maintainers
6
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

blue-button-fhir

Blue Button FHIR to Model Translator

  • 1.6.0-beta.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
4
decreased by-88.24%
Maintainers
6
Weekly downloads
 
Created
Source

blue-button-fhir

FHIR to Blue Button Model Translator

NPM

Build Status Coverage Status

This library translates FHIR Resource Bundles to blue button model.

Currently the following resources are supported in Bundles

  • Patient
  • No consistency is checked between the Patient resource and patient references in other objects.
  • Allergy Intolerance
  • Adverse Reaction and Substance resources that are externally referenced from any Allergy Intolerance resource are assumed to be in the Bundle.
  • Condition
  • Medication Administration
  • Medication and Medication Prescription resources that are externally referenced from any Medication Administration resource are assumed to be in the Bundle.
  • Medication Prescription
  • Medication resources that are externally referenced from any Medication Prescription resource are assumed to be in the Bundle.
  • Medication Statement
  • Observation
  • Observation resources are assumed to have an extension.valueCoding field that defines the LOINC description of the type of the resource. Vitals (code - 8716-3) and Results (code - 11502-2) are supported.

Usage

Require blue-button-fhir module

var bbfhir = require("blue-button-fhir");

and translate a FHIR Resource Bundle

var model = bbfhir.toModel(input);

Demographics, allergies, vitals, results, medications and problems sections of blue button data are filled.

console.log(model.data.demographics);
console.log(model.data.allergies);
console.log(model.data.vitals);
console.log(model.data.results);
console.log(model.data.medications);
console.log(model.data.problems);

Configuration

The only configurable item in this project is logging which can be configured in lib/logger.js. See bunyan for configuration options.

Testing

Mocha and Grunt are used for testing this project. Simply run grunt in the project directory to run all the tests.

License

Licensed under Apache 2.0.

Keywords

FAQs

Package last updated on 26 Jun 2015

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