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 🙏

© 2024 – Pkg Stats / Ryan Hefner

hep-c-screener

v1.0.5

Published

a cds-hooks service to prompts care providers to screen baby-boomers for hepatitis c

Downloads

4

Readme

hep-c-screener

Greenkeeper badge CircleCI JavaScript Style Guide

a CDS Hooks hepatitis c screening service.

this service detects if a patient needs a hepatitis c screening per CDS recommended guidelines. if a screening is required for a patient, it can be automatically ordered into the EHR system via FHIR REST services, and/or administered via CDS hook card actions. the service is highly configurable and easy to deploy.

rad! 💯

usage

the screening service can be run in two different ways--via docker or via nodejs. how to use either of these software tools is left as an exercise for the user. ample tutorials are available for both toolchains via a quick internet search.

please see the CDS Hooks website to learn how to interact with a CDS Hooks web service.

docker

docker run -p <host-port>:8080 cdaringe/hep-c-screener

nodejs

nodejs 8.x or higher is required.

production mode

  • install, npm install --global hep-c-screener
  • hep-c-screener should now be on your $PATH

dev mode

  • install dependencies, yarn, or npm install
  • run the server, yarn start, or npm start

configuration

all configuration is delivered via environment variables. how to set environment variables depends on the OS and deployment mechanism used. how to set these variables is left as an exercise for the user.

server

| variable | default | description | | -------- | ------- | -------------------------- | | PORT | 8080 | HTTP port to run server on |

hepatitis c workflow

| variable | default | description | | ------------------------------------ | ------------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | DISABLE_DEFAULT_SCREENING_ORDER | <not set> | set this field to 1 to not order a HCV screen procedure by default. a card with a button to order the procedure will be presented | | HCV_SCREEN_OBSERVATION_LOINC_CODES | 13955-0 | csv,of,codes to check if a HCV screen has been performed for a patient before | | HCV_SCREEN_PROCEDURE_LOINC_CODE | 47365-2 | single code for ordering HCV screen | | HCV_SNOMED_CODES | 128302006,50711007,235866006 | csv,of,codes to check if someone has or has had HCV | | PROCEDURE_REQUEST_ORDER_INTENT | proposal | a RequestIntent for the HCV screening order. most likely, you will want proposal or order | | PROCEDURE_REQUEST_ORDER_STATUS | draft | the default value for the status field of new HCV ProcedureRequests. if providers want to immediately load the order into the EHR system, set this value to active | | VENIPUNCTURE_SNOMED_CODES | 22778000 | csv,of,codes to check for venipunction orders |

if other code systems or codes themselves are required by default, please open a pull request

fine print

  • when testing to see if a patient already has an outstanding HCV procedure request, we check only the HCV_SCREEN_PROCEDURE_LOINC_CODE, and only if that procedure request status is draft|active|completed. cancelled|suspended etc status codes still allow the service to create a new HCV_SCREEN_PROCEDURE_LOINC_CODE ProcedureRequest for the patient.

contributing

see CONTRIBUTING.md