listRemotePlugins
Syntax
listRemotePlugins([pluginName], [pluginServerAddr])
Parameters
pluginName (optional) is a string indicating the plugin name.
pluginServerAddr (optional) is a string specifying the HTTP or HTTPS address of the DolphinDB plugins repository that the system should use. If not specified, the default HTTP address is used: "http://plugins.dolphindb.cn/plugins". HTTPS address is also supported: "https://plugins.dolphindb.cn/plugins". If the DolphinDB server is deployed outside Chinese Mainland, it is recommended to specify it as "http://plugins.dolphindb.com/plugins" or "https://plugins.dolphindb.com/plugins".
Details
listRemotePlugins returns a table listing the available DolphinDB
plugins and their versions.
If pluginName is specified, the function returns the specified plugin. If the specified plugin does not exist, the function returns an empty record. If pluginName is not specified, the function returns all the specified plugins.
Note: The returned plugin information is based on DolphinDB server version and the operation system.
Supports accessing the plugin repository via proxy. See installPlugin.
Examples
List all available plugins:
listRemotePlugins()
Return a plugin list:
| PluginName | PluginVersion |
|---|---|
| hdf5 | <PluginVersion> |
| matchEngine | <PluginVersion> |
| mongodb | <PluginVersion> |
| mqtt | <PluginVersion> |
| mseed | <PluginVersion> |
| mysql | <PluginVersion> |
| nsq | <PluginVersion> |
| odbc | <PluginVersion> |
| opc | <PluginVersion> |
| opcua | <PluginVersion> |
| zip | <PluginVersion> |
<PluginVersion> refers to the version information of the plugin, such as "2.00.11" and "1.30.23".
Related function: installPlugin
