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

encounter-playground

v0.0.1

Published

Playground for react-jsonschema-form

Downloads

3

Readme

encounter-playground

SSH command for proxy

ssh -p 22 [email protected] -L 7171:devqa.rxnt.com:443

Pre-requisites

For an overview on how smart forms works, check this guid: Break-in Guide to SmartForms

Setup rxntforms

Before executing this you should have your MongoDB rxntforms collection loaded. This load happens via smart-form-repo project.

1. Loading the data

  1. Have you mongodb installed (preferably under 27017 port)

  2. Setup and start encounter-mongo-services (checkout repo read for instructions)

  3. When encounter-mongo-services is up and running, go to the <dir>/smart-form-repo/

    Pay attention for the total number of forms to be processed, in the end you should verify that all forms were uploaded.

    Execute the following:

    npm i
    npm run uploadAmendment:dev
    npm run start:dev
  4. Verify all forms were loaded into rxntforms.

2. Fix the formId

After loading the data into mongo, you should get the _id from the master form.

db.getCollection('masterforms').find({formId:"RX4056"})
// form name: "RXNT Standard Encounter"

With the _id in hands, time to update the ./integration-playground/auth.js. We should change the encounterTemplateV2EncounterInfo.formId property for the new ID. (search for window.encounterTemplateV2EncounterInfo) avoid pushing this change to the repo

How to run

npm start