I'm working on a patient record web app, but I want to allow the user to store the information on their pc/mobile device until they decide to push it to a server. I looked at node-fhir-server-core, but it is not clear if a web page's localstorage could be 'plugged-in' to the architecture.
How can I use node-fhir-server-core in web app with local storage?
212 Views Asked by TimGallagher At
1
There are 1 best solutions below
Related Questions in NODE-FHIR-SERVER-CORE
- How to Implement _include query in FHIR with Node.js (Nest.js)
- Enable root URL for Asymmetrik FHIR server to save Bundle transactions?
- Asymmetrik FHIR mongo: partial patient stored
- How to return newly created resource after PUT in Asymmetrik 4.0.0 node-fhir-server-mongo sample?
- Map a non-standard JSON data from a REST API into FHIR
- How can I use node-fhir-server-core in web app with local storage?
- Asymmetrik FHIR Server Core support FHIRCast?
- Asymmetrik/node-fhir-server-mongo, how to enable post operation
- SMART on FHIR @asymmetrik/sof-strategy introspectionUrl workflow
- How can I extend the structure definition in patient profile in node-fhir-server-core
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
So roughly your patient record app is made up of 2 parts, the server which is a central store for all your patient's data and the app which runs on the patient's pc or phone.
Now the node fhir server being one part of your solution is separate to your web app's pages. Your web app's pages act as a client to the node fhir server and in these pages you will have to implement the localstorage solution to store the requests/data until such a time a user wants to send them to the node fhir server.
I hope that makes sense?