Crates.io | nu_plugin_ws |
lib.rs | nu_plugin_ws |
version | |
source | src |
created_at | 2024-12-06 18:44:37.927223 |
updated_at | 2024-12-07 00:53:25.396649 |
description | A Nushell plugin for easily streaming output from websocket endpoints |
homepage | https://github.com/alex-kattathra-johnson/nu_plugin_ws |
repository | |
max_upload_size | |
id | 1474516 |
Cargo.toml error: | TOML parse error at line 18, column 1 | 18 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
A plugin for Nushell, a cross-platform shell and scripting language. This plugin adds support for streaming from a websocket.
Get the latest version from crates.io with a local install:
# Downloads and installs the plugin
cargo install nu_plugin_ws
# Registers the plugin with Nushell
plugin add ~/.cargo/bin/nu_plugin_ws
# Activates the plugin
plugin use ws
Manual builds can also be used:
# Clone the repository
git clone https://github.com/alex-kattathra-johnson/nu_plugin_ws.git
# Enter the repo folder
cd nu_plugin_ws
# Build a release version of the plugin
cargo build -r
# Registers the plugin with Nushell
plugin add target/release/nu_plugin_ws
# Activates the plugin
plugin use ws