Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
cql-exec-fhir
Advanced tools
This project establishes a FHIR-based data source module for use with the CQL Execution Engine. Currently, only FHIR 1.0.2 (DSTU2) is supported.
To use this project, you should perform the following steps:
The FHIR Data Source expects each patient to be represented as a single FHIR Bundle containing all of the patient's relevant data. The FHIR Data Source does not query FHIR servers, but rather, expects the Bundles to be passed to it.
The following is a simple example of how it would be used to execute over two patients:
const cqlfhir = require('cql-exec-fhir');
// Code setting up the CQL library, executor, etc, and getting the patient data as a bundle
// ...
const patientSource = cqlfhir.PatientSource.FHIRv102();
patientSource.loadBundles([patient01, patient02]);
const results = executor.exec(patientSource);
To encourage quality and consistency within the code base, all code should pass eslint without any warnings. Many text editors can be configured to automatically flag eslint violations. We also provide an npm script for running eslint on the project. To run eslint, execute the following command:
$ yarn lint
FAQs
Provides a FHIR-based data source for use w/ CQL
We found that cql-exec-fhir demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.