UI to display FHIR resources in a web browser
To run the FHIR Server UI in a local environment:
- Run
make up
to start the server.
To stop the server:
- Run
make down
.
To check linting of the code:
- Run
make lint
.
To upgrade npm packages:
- Run
make upgrade_packages
.
To update npm packages:
- Run
make update
.
To generate components:
- Run
make generate_components
.
To generate types:
- Run
make generate_types
.
When running the application, you might encounter the following warning in the terminal Failed to parse source map
.
This warning occurs because the graphiql
package references a source map file (graphiql.css.map
) that is not present in the package. Source maps are used by development tools to map minified code back to the original source code, which can be useful for debugging. However, the absence of this source map file does not affect the functionality of the application.
- No Functional Impact: The warning does not impact the behavior or performance of the application. It is safe to ignore.
- Development Environment Only: This issue is typically only present during development and does not affect production builds.