├── .gitignore ├── LICENSE ├── README.md ├── authorize-client ├── README.md ├── app.js ├── index.html ├── launch.html └── package.json ├── authorize ├── README.md ├── app.js ├── index.html ├── launch.html └── package.json ├── backend-service ├── README.md ├── config.json ├── index.js └── package.json ├── cds-hooks-service ├── README.md ├── index.js ├── package-lock.json ├── package.json └── static │ └── app.png ├── documents ├── README.md ├── index.html ├── launch.html └── package.json ├── fhir-downloader ├── .gitignore ├── README.md ├── config.example.json ├── downloads │ └── .gitkeep ├── index.js ├── lib.js ├── package-lock.json ├── package.json ├── screenshot.png ├── streams │ ├── DocumentReferenceHandler.js │ └── NdJsonStream.js └── test-references.js ├── medications-standalone ├── README.md ├── index.html ├── launch.html └── package.json ├── medications ├── README.md ├── index.html ├── launch.html └── package.json ├── multi-mode ├── README.md ├── index.html ├── launch-embedded.html ├── launch-population.html ├── launch-standalone.html ├── package-lock.json └── package.json ├── population ├── README.md ├── index.html ├── launch.html ├── package-lock.json └── package.json ├── rest-app ├── .gitignore ├── README.md ├── app.py └── requirements.txt ├── tokens ├── README.md ├── index.html ├── launch.html └── package.json └── write ├── README.md ├── index.html ├── launch.html └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/README.md -------------------------------------------------------------------------------- /authorize-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/authorize-client/README.md -------------------------------------------------------------------------------- /authorize-client/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/authorize-client/app.js -------------------------------------------------------------------------------- /authorize-client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/authorize-client/index.html -------------------------------------------------------------------------------- /authorize-client/launch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/authorize-client/launch.html -------------------------------------------------------------------------------- /authorize-client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/authorize-client/package.json -------------------------------------------------------------------------------- /authorize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/authorize/README.md -------------------------------------------------------------------------------- /authorize/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/authorize/app.js -------------------------------------------------------------------------------- /authorize/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/authorize/index.html -------------------------------------------------------------------------------- /authorize/launch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/authorize/launch.html -------------------------------------------------------------------------------- /authorize/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/authorize/package.json -------------------------------------------------------------------------------- /backend-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/backend-service/README.md -------------------------------------------------------------------------------- /backend-service/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/backend-service/config.json -------------------------------------------------------------------------------- /backend-service/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/backend-service/index.js -------------------------------------------------------------------------------- /backend-service/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/backend-service/package.json -------------------------------------------------------------------------------- /cds-hooks-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/cds-hooks-service/README.md -------------------------------------------------------------------------------- /cds-hooks-service/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/cds-hooks-service/index.js -------------------------------------------------------------------------------- /cds-hooks-service/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/cds-hooks-service/package-lock.json -------------------------------------------------------------------------------- /cds-hooks-service/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/cds-hooks-service/package.json -------------------------------------------------------------------------------- /cds-hooks-service/static/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/cds-hooks-service/static/app.png -------------------------------------------------------------------------------- /documents/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/documents/README.md -------------------------------------------------------------------------------- /documents/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/documents/index.html -------------------------------------------------------------------------------- /documents/launch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/documents/launch.html -------------------------------------------------------------------------------- /documents/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/documents/package.json -------------------------------------------------------------------------------- /fhir-downloader/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/fhir-downloader/.gitignore -------------------------------------------------------------------------------- /fhir-downloader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/fhir-downloader/README.md -------------------------------------------------------------------------------- /fhir-downloader/config.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/fhir-downloader/config.example.json -------------------------------------------------------------------------------- /fhir-downloader/downloads/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fhir-downloader/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/fhir-downloader/index.js -------------------------------------------------------------------------------- /fhir-downloader/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/fhir-downloader/lib.js -------------------------------------------------------------------------------- /fhir-downloader/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/fhir-downloader/package-lock.json -------------------------------------------------------------------------------- /fhir-downloader/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/fhir-downloader/package.json -------------------------------------------------------------------------------- /fhir-downloader/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/fhir-downloader/screenshot.png -------------------------------------------------------------------------------- /fhir-downloader/streams/DocumentReferenceHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/fhir-downloader/streams/DocumentReferenceHandler.js -------------------------------------------------------------------------------- /fhir-downloader/streams/NdJsonStream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/fhir-downloader/streams/NdJsonStream.js -------------------------------------------------------------------------------- /fhir-downloader/test-references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/fhir-downloader/test-references.js -------------------------------------------------------------------------------- /medications-standalone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/medications-standalone/README.md -------------------------------------------------------------------------------- /medications-standalone/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/medications-standalone/index.html -------------------------------------------------------------------------------- /medications-standalone/launch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/medications-standalone/launch.html -------------------------------------------------------------------------------- /medications-standalone/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/medications-standalone/package.json -------------------------------------------------------------------------------- /medications/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/medications/README.md -------------------------------------------------------------------------------- /medications/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/medications/index.html -------------------------------------------------------------------------------- /medications/launch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/medications/launch.html -------------------------------------------------------------------------------- /medications/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/medications/package.json -------------------------------------------------------------------------------- /multi-mode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/multi-mode/README.md -------------------------------------------------------------------------------- /multi-mode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/multi-mode/index.html -------------------------------------------------------------------------------- /multi-mode/launch-embedded.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/multi-mode/launch-embedded.html -------------------------------------------------------------------------------- /multi-mode/launch-population.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/multi-mode/launch-population.html -------------------------------------------------------------------------------- /multi-mode/launch-standalone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/multi-mode/launch-standalone.html -------------------------------------------------------------------------------- /multi-mode/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/multi-mode/package-lock.json -------------------------------------------------------------------------------- /multi-mode/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/multi-mode/package.json -------------------------------------------------------------------------------- /population/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/population/README.md -------------------------------------------------------------------------------- /population/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/population/index.html -------------------------------------------------------------------------------- /population/launch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/population/launch.html -------------------------------------------------------------------------------- /population/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/population/package-lock.json -------------------------------------------------------------------------------- /population/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/population/package.json -------------------------------------------------------------------------------- /rest-app/.gitignore: -------------------------------------------------------------------------------- 1 | env -------------------------------------------------------------------------------- /rest-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/rest-app/README.md -------------------------------------------------------------------------------- /rest-app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/rest-app/app.py -------------------------------------------------------------------------------- /rest-app/requirements.txt: -------------------------------------------------------------------------------- 1 | fhirclient==3.2.0 2 | flask==0.12.2 3 | -------------------------------------------------------------------------------- /tokens/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/tokens/README.md -------------------------------------------------------------------------------- /tokens/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/tokens/index.html -------------------------------------------------------------------------------- /tokens/launch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/tokens/launch.html -------------------------------------------------------------------------------- /tokens/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/tokens/package.json -------------------------------------------------------------------------------- /write/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/write/README.md -------------------------------------------------------------------------------- /write/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/write/index.html -------------------------------------------------------------------------------- /write/launch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/write/launch.html -------------------------------------------------------------------------------- /write/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-apps-stu3/HEAD/write/package.json --------------------------------------------------------------------------------