All Projects → Asymmetrik → fhir-app-starter

Asymmetrik / fhir-app-starter

Licence: MIT license
🔥 Open Source FHIR App project starter. Start building your app right away.

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects
Handlebars
879 projects

Projects that are alternatives of or similar to fhir-app-starter

basisprofil-de-r4
No description or website provided.
Stars: ✭ 15 (-28.57%)
Mutual labels:  fhir
laravel-react-boilerplate
Laravel React Boilerplate with Ant Design, Route-Level Code Splitting, Redux, Sanctum Auth
Stars: ✭ 49 (+133.33%)
Mutual labels:  redux-saga
react-native-basekit
Basic setup for react-native projects using react-native , redux, redux-sagas, react-navigation
Stars: ✭ 16 (-23.81%)
Mutual labels:  redux-saga
youtube-codequinta-redux-saga
Project created during Redux Saga live
Stars: ✭ 36 (+71.43%)
Mutual labels:  redux-saga
marvel-jarvig
Marvel JARVIG (Just A Rather Very Interesting Game) is a game that lets you find and discover Marvel Comics characters based on their name, image and description!
Stars: ✭ 13 (-38.1%)
Mutual labels:  redux-saga
hbb-survey-app
Hatay Municipality Survey Application
Stars: ✭ 18 (-14.29%)
Mutual labels:  redux-saga
bank-client
Frontend Application using React.js with Hooks, Redux, Saga, Ant Design, styled-components and Jest
Stars: ✭ 57 (+171.43%)
Mutual labels:  redux-saga
fhir-example-channels
Examples to help ignite your FHIR integration with NextGen Connect!
Stars: ✭ 37 (+76.19%)
Mutual labels:  fhir
loinc2hpo
Java library to map LOINC-encoded test results to Human Phenotype Ontology
Stars: ✭ 19 (-9.52%)
Mutual labels:  fhir
react-native-ecommerce
E-commerce mobile application developed using React Native 👔 🎩
Stars: ✭ 60 (+185.71%)
Mutual labels:  redux-saga
react-workshops
Online react workshops
Stars: ✭ 36 (+71.43%)
Mutual labels:  redux-saga
movies
a project build with react、redux、 redux-saga、 express 、mongodb、ssr also ☀️
Stars: ✭ 76 (+261.9%)
Mutual labels:  redux-saga
next-react-boilerplate
🔥 NextJS with additional tech feature like react-boilerplate. Demo >>
Stars: ✭ 20 (-4.76%)
Mutual labels:  redux-saga
RonFHIR
R on FHIR
Stars: ✭ 49 (+133.33%)
Mutual labels:  fhir
react-phoenix-users-boilerplate
Elixir/Phoenix + React + users template/boilerplate.
Stars: ✭ 71 (+238.1%)
Mutual labels:  redux-saga
abilitysheet
This app is ability sheet for beatmania iidx music of level 12.
Stars: ✭ 38 (+80.95%)
Mutual labels:  redux-saga
AHRQ-CDS-Connect-Authoring-Tool
The CDS Authoring Tool is part of the CDS Connect project https://cds.ahrq.gov/, sponsored by the Agency for Healthcare Research and Quality (AHRQ), and developed under contract with AHRQ by MITRE's CAMH FFRDC.
Stars: ✭ 32 (+52.38%)
Mutual labels:  fhir
nextjs-redux-instagram
🌏 The simple Instagram was written by next.js & redux-saga & recompose
Stars: ✭ 48 (+128.57%)
Mutual labels:  redux-saga
ascvd-risk-calculator
SMART ASCVD Risk Calculator
Stars: ✭ 46 (+119.05%)
Mutual labels:  fhir
data-flow
frontend data flow explored in React
Stars: ✭ 19 (-9.52%)
Mutual labels:  redux-saga

Logo

Travis

FHIR App Starter

Start building your next FHIR App in seconds. Develop it with modern technologies and a stellar developer experience.

Features

React --

  • React first. Build an App in a framework that is future-proof and performant.

Redux --

  • Redux has proven to be the leader in client state management. Use it to store your FHIR documents.

Redux-Saga --

  • Redux Saga is a great way to make asynchronous calls to FHIR servers.

Semantic-UI --

  • Perhaps the most opinionated decision, Semantic-UI is an excellent CSS Framework and component library for building applications.

Production Ready --

  • This project has a scalable component structure utilizing a Container pattern that is ready for Production out of the box.

Deploy Now

Deploy to Netlify

Getting Started

Launch from Cerner's Sandbox

  1. Create an account on Cerner's Code Sandbox and log in.

  2. Create an application by clicking New App

    NewApp

    If you are just developing locally, use the following:

Config Example value
App Name Anything you want
SMART Launch URI http://localhost:3000/launch.html
Redirect URI http://localhost:3000/
App Type Provider
FHIR Spec DSTU2
Authorized Yes
Patient Scopes Patient.read Observation.read Condition.read
User Scopes Not needed unless your requirements need this
  1. Clone fhir-app-starter

    git clone https://github.com/asymmetrik/fhir-app-starter
    cd fhir-app-starter
  2. Update your app config

    The app builds the information into the application automatically. All you need to do is update your config.js.

    // Update me!
    module.exports = {
      clientId: '', // Your clientId
      scope: '', // "patient/Patient.read patient/Observation.read" or: Whatever scopes you like
      iss: '', // Your FHIR Server or: Found on Cerner's Sandbox under "FHIR Spec: dstu2 - " <iss listed here> "
      redirectUri: '', // Your redirectUri
    };
  3. Install and start

    yarn install
    yarn start

    You should see your browser open up your app.

    Unconnected

    Notice the "Unconnected..." banner. This is because we have not launched from an EHR yet. Cerner's Code Sandbox allows us to launch the application in this exact way. Let's do that.

  4. Launch from Cerner's Code Sandbox

    On Cerner's Code Sandbox, click into your application. Select Begin Testing. Select a Patient, and Select Launch. After launching you may be redirected to a login page. Use username portal and password portal. If you configured things correctly, you should see that your application has been launched properly.

    Success

Building for production

Build for production using the following command:

yarn build

Your app will be located in the build directory

Inspiration

  • react-boilerplate
  • react-redux-saga-boilerplate
  • create-react-app
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].