npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

mdt-cdf2fhir

v1.0.3

Published

Tool for transformings cohort-study data into FHIR-resources given a series of pairing rules.

Readme

CDF2FHIR - Cohort-study to FHIR Data Transformation

CDF2FHIR is a TypeScript tool designed to transform cohort-study data into FHIR-compliant data. This tool allows you to specify and test the pairing rules between the cohort-study data and the properties of a given FHIR resource. Once you have defined these rules, you can link them to one or more FHIR-compliant templates. This requires the cohort study data to be previously transformed into the CDF format.

Features

  • Transform cohort-study data into FHIR-compliant data
  • Allows the definition of pairing rules between cohort-study data and FHIR resource properties
  • Paring rules are specified in independent modules to make them testeable

Data-harmonization process at-a-glance

  1. The input data is pre-processed so it follows the (participant-centered) CDF format.
  2. A new TypeScript project is created, importing the NPM mydigitwin-cdf2fhir module.
  3. For each resource you want to include on the target FHIR bundle, a module with the corresponding pairing rules is implemented, following a TDD approach. Depending on the resource, this can by done by implementing one of the existing TypeScript interfaces (e.g., Condition, LaboratoryTestResult, Research Subject).
  4. You define, in a configuration file, which 'mapping' modules will be used on which FHIR templates. For the modules developed using the provided interfaces, there are already FHIR templates for it.
  5. You can launch the transformation process through the CLI using the cdf2fhir command installed with the NPM package.

This package includes interfaces and templates to generate resources compliant with the Dutch FHIR-ZIB (zib-2017) profile. Adding support to other profiles, or to resources not yet supported, requires the development of the corresponding templates using the JSONata transformation language. How to do this, and the tools that support the process, are further descibed in the developers documentation

Installation

npm install mdt-cdf2fhir

Usage

#Transform a single file, print the ouput to STDOUT
npx mydigitwin-cdf2fhir <config_file> ./fhirvalidation/sampleinputs/input-p1234.json
#Transform a single file, save the output on the given folder
npx mydigitwin-cdf2fhir <config_file> ./fhirvalidation/sampleinputs/input-p1234.json -o /tmp/out
#Transform all the .json files in a given folder, save the output on the given folder
npx mydigitwin-cdf2fhir <config_file> ./fhirvalidation/sampleinputs -o /tmp/out