No description
Find a file
Markus Scully 3871fa4c46 ⬆️ Bump dependencies listed in Cargo.lock
This commit updates several dependencies within the `Cargo.lock` file. This ensures that we are using the latest compatible versions of these libraries, incorporating any bug fixes, performance improvements, and new features they might offer.
2025-06-20 13:59:18 +03:00
.github Update issue templates 2024-12-09 09:42:54 -06:00
src Run cargo fmt 2024-12-06 17:07:09 -06:00
.gitignore Create ws plugin 2024-12-06 09:48:06 -06:00
Cargo.lock ⬆️ Bump dependencies listed in Cargo.lock 2025-06-20 13:59:18 +03:00
Cargo.toml 🐛 downgrade nushell dependencies to 0.104.1 2025-06-20 12:52:49 +03:00
CODE_OF_CONDUCT.md Create CODE_OF_CONDUCT.md 2024-12-09 09:41:01 -06:00
flake.lock Update nushell deps, add flake 2025-05-30 15:14:14 -05:00
flake.nix Update nushell deps, add flake 2025-05-30 15:14:14 -05:00
LICENSE Create ws plugin 2024-12-06 09:48:06 -06:00
README.md 🐛 downgrade nushell dependencies to 0.104.1 2025-06-20 12:52:49 +03:00

nu_plugin_ws

Crates.io Version Nushell

A plugin for Nushell, a cross-platform shell and scripting language. This plugin adds support for streaming from a websocket.

Installation

Cargo

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 build

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