Boomack Client CLI
There are two command line clients for Boomack with different strengths and weaknesses.
The command boom is implemented in JavaScript for the NodeJS platform
and can be installed with npm.
The faster alternative bo is implemented in Rust
and can be either downloaded as pre-built binary for different platforms
or installed with the Rust package manager cargo.
Because the NodeJS engine takes some time to start up and parse all source files,
the boom command can be too slow for some scenarios with high update frequencies.
Therefore, as an alternative, the client CLI was ported to Rust.
Rust is a language developed by the Mozilla foundation as a safer alternative for C/C++. The Rust implementation is a statically linked binary with much better performance then the JavaScript implementation. It needs less memory and is as fast as the usual CLI tools on the shell.
However, because the Rust implementation is more elaborate, new features are first implemented and evaluated in the NodeJS version, before they eventually get ported to the Rust version.
Basic Options ↑
--help--api<API base URL of the server>E. g.http://my-server.com:3001/--token<API authentication token>--config<filename of config file>(can be used multiple times)--dryDo not send, but print the request--curlDo not send, but print the request as cURL commandline--silentDo not show info messages
Commands ↑
boom display (default)
↑
Display an hyper-media item in a slot of a Boomack panel.
Options
-l,--location,--target<panel ID>/<slot ID>-s,--string<text content>-f,--file(<filename>|STDINfor STDIN )-u,--url<URL to display as media item>-w,--watch
If--fileis used, watches for changes of the file and re-sends the display request on every change.-t,--type<MIME type>-c,--cache(auto|memory|file)-e,--embed-x,--extend(start|end)--appendsame as-extend end--prependsame as--extend start-o,--options(<key>=<value>|<YAML/JSON>|<filename>|STDIN)*
Can be used multiple times.--rawTakes content and sends it directly as display request. Ignores all options but--file,--url, and--string.--no-file-url
Prevents passing afile://...URL in case a file is displayed and the server is localhost
If the options --string, --file, and --url are used together, only one of them is used:
--file is overruling --url and --string is overruling --file and --url.
Auto Detection of Content and Type
If none of the three options --string, --file, and --url is given,
the content is detected automatically by the following rules.
If a non-option argument exists, its value is used as the content to display;
Otherwise, the content is read from STDIN as if -f - was used.
- if it starts with
http://orhttps://it is used as URL and the resource from the URL is displayed - if it is a valid data URL
data:[<mediatype>][;base64],<data>, its content is displayed - if it is a valid file path and the file exists, the content of the file is displayed
If --type is not given and MIME type is detected from the path/URL or content:
- if a file path or an URL is given, the filename is used to detect the MIME type
- if a URL is given and the path does not contain a known filename (extension), a HEAD request is issued against the URL to determine the content type of the response
- if the content of a string starts with
<and ends with>, it is displayed astext/html - otherwise it is displayed as plain text or download
If the filename is used to detect the MIME type,
the configuration property client.types is used to map from filename patterns / extensions
to MIME types.
boom play
↑
Execute a Playbook.
boom play [ Options ] [<filename>]
If no filename is given, the playbook is read from STDIN.
Playbook Options
-l,--location,--target<panel ID>/<slot ID>Default panel and slot, if it has not been specified in Display Request or Playbook-c,--cancel-on-errorStop the execution at the first occurring error-b,--base-path<path>A filesystem path for resolving relative paths in the playbook--no-file-urlPrevents passing afile://...URL in case a file is displayed and the server is localhost-s,--steps-onlyOnly execute sequence steps from the playbook-i,--include<TAGS>The tags of sequence steps to include in the execution-x,--exclude<TAGS>The tags of sequence steps to exclude from the execution-a,--label<LABELS>The labels of the sequence steps to execute
boom eval
↑
Evaluate JavaScript code in a panel.
This evaluation is volatile, which means it is executed in all Browsers, which currently show the target panel. But the code is not persisted in any way.
boom eval [ --target <panel ID> ] (<code> | <filename> | STDIN)
boom panel
↑
Manage panels and change the layout of a panel.
Used without specified sub-command uses implicitly ls as sub-command.
Sub-Commands
boompanells
List the IDs of all existing panelsboompanelget[<panel ID>]
Retrieve the layout of a panel with all slotsboompaneladd<panel ID>[<YAML/JSON>|<filename>|STDIN]
Add a new panel with a given layoutboompanelupdate/layout<panel ID>(<YAML/JSON>|<filename>|STDIN)
Update the layout of an existing panelboompanelclear[<panel ID>]
Clear all slots in the panelboompaneldelete<panel ID>
Delete an existing panelboompanelexport[<panel ID>] [ Options ]
Export a panel as HTML file to the filesystem of the server
Export Options
-t,--theme<theme name>-z,--zoom<zoom factor>-p,--path<relative path>A relative path inside the export directory in the filesystem of the Boomack server.-n,--name<filename without extension>The target filename for the exported HTML file. Only forpanelandslot.--no-headerSuppress the panel header.--no-logoSuppress the logo from the header.--no-toolbarsSuppress the toolbars from the slots.--no-toolsSuppress the tools from the slot toolbars.
boom slot
↑
Clear or export individual slots.
Sub-Commands
boomslotclear<panel ID>/<slot ID>
Clear all content including the history from a slot.boomslotexport<panel ID>/<slot ID>[ Options ]
Export a slot as HTML file to the filesystem of the server.
Export Options
-t,--theme<theme name>-z,--zoom<zoom factor>-p,--path<relative path>
A relative path inside the export directory in the filesystem of the Boomack server.-n,--name<filename without extension>
The target filename for the exported HTML file. Only forpanelandslot.--no-toolbarSuppress the toolbar from the slot.--no-toolsSuppress the tools from the slot’s toolbar.
boom preset
↑
Manage prepared options.
Used without specified sub-command uses implicitly ls as sub-command.
Sub-Commands
boompresetls
List the IDs of all existing presetsboompresetget<preset ID>
Get the definition of an existing presetboompresetadd<preset ID>(<key=value>* |<YAML/JSON>|<filename>|STDIN)
Add a new presetboompresetupdate<preset ID>(<key=value>* |<YAML/JSON>|<filename>|STDIN)
Update an existing presetboompresetdelete<preset ID>
Delete an existing preset
boom type
↑
Manage media types.
Used without specified sub-command uses implicitly ls as sub-command.
Sub-Commands
boomtypels
List the IDs of all existing media typesboomtypeget<media type ID>
Get the definition of an existing media typeboomtypeadd<media type ID>(<key=value>* |<YAML/JSON>|<filename>|STDIN) [-p|--presets<preset ID>* ] [–text]
Add a new media typeboomtypeupdate<media type ID>(<key=value>* |<YAML/JSON>|<filename>|STDIN) [-p|--presets<preset ID>* ] [–text]
Update an existing media typeboomtypedelete<media type ID>
Delete an existing media type
boom action
↑
Manage actions.
Used without specified sub-command uses implicitly ls as sub-command.
Sub-Commands
boomactionls
List the IDs of all existing actionsboomactionget<media type ID>
Get the definition of an existing actionboomactionadd<action ID>(<YAML/JSON>|<filename>|STDIN) [ Options ]
Add a new actionboomactionupdate<action ID>(<YAML/JSON>|<filename>|STDIN) [ Options ]
Update an existing actionboomactiondelete<action ID>[ Options ]
Delete an existing action
boom export
↑
Export individual slots, one, or multiple panels as static HTML to the server filesystem.
Used without specified sub-command uses implicitly all as sub-command.
Sub-Commands
boomexportall
Export all panels as HTML files to the filesystem of the serverboomexportpanel [id]
Export one panel as HTML file to the filesystem of the serverboomexportslot <panel ID>/<slot ID>
Export one slot as HTML file to the filesystem of the server
Export Options
-t,--theme<theme name>-z,--zoom<zoom factor>-p,--path<relative path>A relative path inside the export directory in the filesystem of the Boomack server.-n,--name<filename without extension>The target filename for the exported HTML file. Only forpanelandslot.--no-headerSuppress the panel header.--no-logoSuppress the logo from the panel header.--no-toolbarsSuppress the toolbars from all slots of a panel.--no-toolbarSuppress the toolbar from a single slot.--no-toolsSuppress the tools from a slot’s toolbar.
Configuration ↑
The configuration of the Boomack Client CLI consists of the following parts:
- Boomack Server API URL
- API Authentication Token
- Request Options
- Timeout
- Retry Attempts
- Response Format
- Filename to Media Type Mapping
The configuration is merged from a couple of different sources, listed from highest to lowest priority:
- Command line switches
- Environment variables
- Explicit configuration files
- Implicit configuration files
- Default configuration
Command Line Switches ↑
The following command line switches impact the configuration:
--api <API base URL of the server>--token <API authentication token>--format (text | json | html)
Environment Variables ↑
The following environment variables are supported:
BOOMACK_SERVER_URL: API base URL of the serverBOOMACK_SERVER_HOST: The hostname or IP address of the serverBOOMACK_SERVER_PORT: The port of the serverBOOMACK_CLIENT_TOKEN: API authentication tokenBOOMACK_CLIENT_TIMEOUT: Timeout for the API requests in millisecondsBOOMACK_CLIENT_RETRY: Number of retries for an API requestBOOMACK_CLIENT_FORMAT: The response format (text/plain,application/json,text/html)
BOOMACK_SERVER_URL has priority over
the variables BOOMACK_SERVER_HOST and BOOMACK_SERVER_PORT.Configuration Files ↑
Configuration files for the Boomack Client CLI are picked up
implicitly from some places, and can additionally be specified
explicitly with the command line switch --config <filename>.
The following implicit configuration files are considered in that order:
boomack[.json|.yaml|.yml]in the current working directory.boomack[.json|.yaml|.yml]in the user profileboomack-server[.json|.yaml|yml]in the current working directory.boomack-server[.json|.yaml|.yml]in the user profile
The config files in the current working directory and the user profile
can have no filename extension or one of the following: .json, .yaml, .yml.
And they are looked up in that order.
Meaning, if a file boomack in the current working directory exists,
another file with name boomack.yaml will be ignored.
client.
As a result a boomack-server[.json|.yaml|.yml] config file
in the current working directory can configure both, server and client.Default Configuration ↑
The default client configuration looks like this:
server:
host: localhost
port: 3000
url: null # if set, takes precedence over host and port
client:
token: null
timeout: 10000 # in milliseconds
retry: 0
format: text/plain # text/plain, application/json, text/html
types: # mapping from filename patterns to media types
'*.txt': 'text/plain'
'*.md': 'text/markdown'
'*.csv': text/csv'
'*.tsv': 'text/tsv'
'*.vega': 'application/x-vega-spec'
'*.vegalite': 'application/x-vega-lite-spec'
'Dockerfile': 'text/x-dockerfile'
'makefile': 'text/x-makefile'
...
{
"server": {
"host": "localhost",
"port": 3000,
"url": null
},
"client": {
"token": null,
"timeout": 10000,
"retry": 0,
"format": "text",
"types": {
"*.txt": "text/plain",
"*.md": "text/markdown",
"*.csv": "text/csv'",
"*.tsv": "text/tsv",
"*.vega": "application/x-vega-spec",
"*.vegalite": "application/x-vega-lite-spec",
"Dockerfile": "text/x-dockerfile",
"makefile": "text/x-makefile",
...
}
}
}
http:// protocol
to build the API base URL.