@gravitate-health/fhir-lens-bundler
v0.1.7
Published
Tool to bundle from raw lens to a FHIR Standard Lens
Downloads
423
Readme
FHIR Lens Bundler
This is a CLI tool to bundle FHIR lenses into a single file.
Usage
$ npm install -g @gravitate-health/fhir-lens-bundler
$ fhir-lens-bundler COMMAND
running command...
$ fhir-lens-bundler (--version)
@gravitate-health/fhir-lens-bundler/0.1.7 linux-x64 node-v20.10.0
$ fhir-lens-bundler --help [COMMAND]
USAGE
$ fhir-lens-bundler COMMAND
...
Commands
fhir-lens-bundler bundle FILE
fhir-lens-bundler help [COMMAND]
fhir-lens-bundler plugins
fhir-lens-bundler plugins:install PLUGIN...
fhir-lens-bundler plugins:inspect PLUGIN...
fhir-lens-bundler plugins:install PLUGIN...
fhir-lens-bundler plugins:link PLUGIN
fhir-lens-bundler plugins:uninstall PLUGIN...
fhir-lens-bundler plugins reset
fhir-lens-bundler plugins:uninstall PLUGIN...
fhir-lens-bundler plugins:uninstall PLUGIN...
fhir-lens-bundler plugins update
fhir-lens-bundler upload FILE
fhir-lens-bundler bundle FILE
Bundles raw lenses into a FHIR compliant single file.
USAGE
$ fhir-lens-bundler bundle FILE -n <value> [-d]
ARGUMENTS
FILE file to read
FLAGS
-d, --default use default values for the bundle
-n, --name=<value> (required) name to apply to lens
DESCRIPTION
Bundles raw lenses into a FHIR compliant single file.
EXAMPLES
$ fhir-lens-bundler bundle
See code: src/commands/bundle.ts
fhir-lens-bundler help [COMMAND]
Display help for fhir-lens-bundler.
USAGE
$ fhir-lens-bundler help [COMMAND...] [-n]
ARGUMENTS
COMMAND... Command to show help for.
FLAGS
-n, --nested-commands Include all nested commands in the output.
DESCRIPTION
Display help for fhir-lens-bundler.
See code: @oclif/plugin-help
fhir-lens-bundler plugins
List installed plugins.
USAGE
$ fhir-lens-bundler plugins [--json] [--core]
FLAGS
--core Show core plugins.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
List installed plugins.
EXAMPLES
$ fhir-lens-bundler plugins
See code: @oclif/plugin-plugins
fhir-lens-bundler plugins:install PLUGIN...
Installs a plugin into the CLI.
USAGE
$ fhir-lens-bundler plugins add plugins:install PLUGIN...
ARGUMENTS
PLUGIN... Plugin to install.
FLAGS
-f, --force Run yarn install with force flag.
-h, --help Show CLI help.
-s, --silent Silences yarn output.
-v, --verbose Show verbose yarn output.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Installs a plugin into the CLI.
Can be installed from npm or a git url.
Installation of a user-installed plugin will override a core plugin.
e.g. If you have a core plugin that has a 'hello' command, installing a user-installed plugin with a 'hello' command
will override the core plugin implementation. This is useful if a user needs to update core plugin functionality in
the CLI without the need to patch and update the whole CLI.
ALIASES
$ fhir-lens-bundler plugins add
EXAMPLES
$ fhir-lens-bundler plugins add myplugin
$ fhir-lens-bundler plugins add https://github.com/someuser/someplugin
$ fhir-lens-bundler plugins add someuser/someplugin
fhir-lens-bundler plugins:inspect PLUGIN...
Displays installation properties of a plugin.
USAGE
$ fhir-lens-bundler plugins inspect PLUGIN...
ARGUMENTS
PLUGIN... [default: .] Plugin to inspect.
FLAGS
-h, --help Show CLI help.
-v, --verbose
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Displays installation properties of a plugin.
EXAMPLES
$ fhir-lens-bundler plugins inspect myplugin
See code: @oclif/plugin-plugins
fhir-lens-bundler plugins:install PLUGIN...
Installs a plugin into the CLI.
USAGE
$ fhir-lens-bundler plugins install PLUGIN...
ARGUMENTS
PLUGIN... Plugin to install.
FLAGS
-f, --force Run yarn install with force flag.
-h, --help Show CLI help.
-s, --silent Silences yarn output.
-v, --verbose Show verbose yarn output.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Installs a plugin into the CLI.
Can be installed from npm or a git url.
Installation of a user-installed plugin will override a core plugin.
e.g. If you have a core plugin that has a 'hello' command, installing a user-installed plugin with a 'hello' command
will override the core plugin implementation. This is useful if a user needs to update core plugin functionality in
the CLI without the need to patch and update the whole CLI.
ALIASES
$ fhir-lens-bundler plugins add
EXAMPLES
$ fhir-lens-bundler plugins install myplugin
$ fhir-lens-bundler plugins install https://github.com/someuser/someplugin
$ fhir-lens-bundler plugins install someuser/someplugin
See code: @oclif/plugin-plugins
fhir-lens-bundler plugins:link PLUGIN
Links a plugin into the CLI for development.
USAGE
$ fhir-lens-bundler plugins link PLUGIN
ARGUMENTS
PATH [default: .] path to plugin
FLAGS
-h, --help Show CLI help.
-v, --verbose
--[no-]install Install dependencies after linking the plugin.
DESCRIPTION
Links a plugin into the CLI for development.
Installation of a linked plugin will override a user-installed or core plugin.
e.g. If you have a user-installed or core plugin that has a 'hello' command, installing a linked plugin with a 'hello'
command will override the user-installed or core plugin implementation. This is useful for development work.
EXAMPLES
$ fhir-lens-bundler plugins link myplugin
See code: @oclif/plugin-plugins
fhir-lens-bundler plugins:uninstall PLUGIN...
Removes a plugin from the CLI.
USAGE
$ fhir-lens-bundler plugins remove plugins:uninstall PLUGIN...
ARGUMENTS
PLUGIN... plugin to uninstall
FLAGS
-h, --help Show CLI help.
-v, --verbose
DESCRIPTION
Removes a plugin from the CLI.
ALIASES
$ fhir-lens-bundler plugins unlink
$ fhir-lens-bundler plugins remove
EXAMPLES
$ fhir-lens-bundler plugins remove myplugin
fhir-lens-bundler plugins reset
Remove all user-installed and linked plugins.
USAGE
$ fhir-lens-bundler plugins reset [--hard] [--reinstall]
FLAGS
--hard Delete node_modules and package manager related files in addition to uninstalling plugins.
--reinstall Reinstall all plugins after uninstalling.
See code: @oclif/plugin-plugins
fhir-lens-bundler plugins:uninstall PLUGIN...
Removes a plugin from the CLI.
USAGE
$ fhir-lens-bundler plugins uninstall PLUGIN...
ARGUMENTS
PLUGIN... plugin to uninstall
FLAGS
-h, --help Show CLI help.
-v, --verbose
DESCRIPTION
Removes a plugin from the CLI.
ALIASES
$ fhir-lens-bundler plugins unlink
$ fhir-lens-bundler plugins remove
EXAMPLES
$ fhir-lens-bundler plugins uninstall myplugin
See code: @oclif/plugin-plugins
fhir-lens-bundler plugins:uninstall PLUGIN...
Removes a plugin from the CLI.
USAGE
$ fhir-lens-bundler plugins unlink plugins:uninstall PLUGIN...
ARGUMENTS
PLUGIN... plugin to uninstall
FLAGS
-h, --help Show CLI help.
-v, --verbose
DESCRIPTION
Removes a plugin from the CLI.
ALIASES
$ fhir-lens-bundler plugins unlink
$ fhir-lens-bundler plugins remove
EXAMPLES
$ fhir-lens-bundler plugins unlink myplugin
fhir-lens-bundler plugins update
Update installed plugins.
USAGE
$ fhir-lens-bundler plugins update [-h] [-v]
FLAGS
-h, --help Show CLI help.
-v, --verbose
DESCRIPTION
Update installed plugins.
See code: @oclif/plugin-plugins
fhir-lens-bundler upload FILE
upload file (json format) to a valid FHIR server.
USAGE
$ fhir-lens-bundler upload FILE -d <value>
ARGUMENTS
FILE file to read
FLAGS
-d, --domain=<value> (required) domain where FHIR server is hoste (with http/https)
DESCRIPTION
upload file (json format) to a valid FHIR server.
EXAMPLES
$ fhir-lens-bundler upload
See code: src/commands/upload.ts
fhir-lens-bundler bundle FILE
Bundles raw lenses into a FHIR compliant single file.
USAGE
$ fhir-lens-bundler bundle FILE -n <value> [-d]
ARGUMENTS
FILE file to read
FLAGS
-d, --default bundle lenses with default information
-n, --name=<value> (required) name to apply to lens
DESCRIPTION
Bundles raw lenses into a FHIR compliant single file.
EXAMPLES
$ fhir-lens-bundler bundle
See code: src/commands/bundle.ts
fhir-lens-bundler upload FILE
upload file (json format) to a valid FHIR server.
USAGE
$ fhir-lens-bundler upload FILE -d <value>
ARGUMENTS
FILE file to read
FLAGS
-d, --domain=<value> (required) domain where FHIR server is hoste (with http/https)
DESCRIPTION
upload file (json format) to a valid FHIR server.
EXAMPLES
$ fhir-lens-bundler upload
See code: src/commands/upload.ts