The Eclipse Zenoh: Zero Overhead Pub/sub, Store/Query, and Compute.
Zenoh (pronounced /zeno/) unifies data in motion, data at rest, and computations. It carefully blends traditional pub/sub with geo-distributed storage, queries, and computations, while retaining a level of time and space efficiency that is well beyond any of the mainstream stacks.
Check the website zenoh.io and the roadmap for more detailed information.
This repository provides a Typescript / Javascript binding through the use of
the zenoh-plugin-remote-api
in this repo. The long-term plan is to use zenoh
Zenoh written in Rust to target WASM.
In its current state, it is not possible to compile Zenoh (Rust) to target WASM,
and it will need to undergo a fair amount of refactoring before that can happen.
The latest version of the zenoh-ts library can be installed from npm:
npm install @eclipse-zenoh/zenoh-ts
Docs can be accessed at Docs Link
The library requires a websocket connection to the zenohd
daemon through the
zenohd-plugin-remote-api
in the daemon. See the corresponding section below.
The zenohd
router and its plugins should be built with the same Zenoh sources,
the same version of the Rust compiler, and with the same set of features. This
requirement exists because the router and plugins share common Rust structures,
and Rust doesn't guarantee ABI compatibility of the memory representation of
these structures.
Therefore, one of the methods below is recommended to ensure that the plugin and router are compatible.
The file EXAMPLE_CONFIG.json5
references the
zenoh-plugin-remote-api\EXAMPLE_CONFIG.json5
with the minimal necessary set of
options to run the plugin. See also the full set of available options, like SSL
certificate settings in zenoh-plugin-remote-api\config.json5
.
-
Do nothing and just run examples and tests with
DAEMON
parameter as described in next session. The scripts will automatically build plugin and daemon from the sources and start it. -
Install the latest release of
zenohd
andzenoh-plugin-remote-api
Ubuntu:
echo "deb [trusted=yes] https://download.eclipse.org/zenoh/debian-repo/ /" | sudo tee -a /etc/apt/sources.list.d/zenoh.list > /dev/null sudo apt update sudo apt install zenohd sudo apt install zenoh-plugin-remote-api
Mac-OS:
brew tap eclipse-zenoh/homebrew-zenoh brew install zenoh brew install zenoh-plugin-remote-api
Run the installed zenoh router with the example config
zenohd --config EXAMPLE_CONFIG.json5
The expected output should be something similar to:
zenohd: zenohd v1.0.3 built with rustc 1.75.0 (82e1608df 2023-12-21) zenoh::net::runtime: Using ZID: f7bc54e0941036422ec08ebac6fbdb40 zenoh::api::loader: Loading plugin "remote_api" zenoh::api::loader: Starting plugin "remote_api" zenoh::api::loader: Successfully started plugin remote_api from "/usr/lib/libzenoh_plugin_remote_api.so" zenoh::api::loader: Finished loading plugins zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/....
-
Build both the plugin and the router from the sources manually:
Build the plugin
zenoh-plugin-remote-api
cargo build
Optional note for developers: to regenerate typescript library <-> Rust plugin interface do this:
cargo test export_bindings cp zenoh-plugin-remote-api/bindings/* zenoh-ts/src/remote_api/interface
Build and run
zenohd
from the same sources used for the plugin. Thezenohd
dependency is specified in the[workspace.metadata.bin]
section inCargo.toml
, which is processed by the third-party tool cargo-run-bin.The
zenohd
binary is built into the.bin
directory local to the project. If necessary, remove the.bin
directory withrm -rf .bin
to rebuild it, as thecargo-run-bin
tool does not handle this automatically.cargo install cargo-run-bin cargo bin zenohd --config EXAMPLE_CONFIG.json5
The expected output should be something similar to:
zenohd: zenohd vc764bf9b built with rustc 1.75.0 (82e1608df 2023-12-21) zenoh::net::runtime: Using ZID: bb3fb16628f57e92f92accf2f5c81511 zenoh::api::loader: Loading plugin "remote_api" zenoh::api::loader: Starting plugin "remote_api" zenoh::api::loader: Successfully started plugin remote_api from "./target/debug\\zenoh_plugin_remote_api.dll" zenoh::api::loader: Finished loading plugins zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/...
-
Make sure that the following utilities are available on your platform.
- NPM
- yarn
- Typescript
- Rust
- deno - for command line examples
-
Navigate to the directory
zenoh-ts
-
Run the commands:
yarn install yarn build library
The result is placed into the
zenoh-ts/dist
directory.This library is currently compatible with browsers, but not with NodeJS due to websocket library limitations.
For simplicity, the examples can be executed from the zenoh-ts
directory. You
may also go directly to the zenoh-ts/examples
directory and explore and run
examples there.
The examples can be run with or without a local zenohd daemon:
- To run with an external zenohd instance: Make sure that the
zenohd
router withzenoh-plugin-remote-api
works on localhost and the websocket port is 10000. - To automatically start/stop a local zenohd instance: Use the
DAEMON
parameter as the first argument to the start command.
To run an example, execute the command yarn start [DAEMON] example deno [example_name]
or yarn start [DAEMON] example browser
The following examples are available:
-
Command line examples
-
Publisher and subscriber
yarn start DAEMON example deno z_pub yarn start DAEMON example deno z_sub
-
Queryable and get
yarn start DAEMON example deno z_queryable yarn start DAEMON example deno z_get
and many more
-
-
Chat in browser example
yarn start DAEMON example browser
The browser window on localhost:8080 with the chat interface should open. Open another one with the same address, press the "Connect" buttons in both and see how they interact.
-
Make sure that the typedoc dependency is installed.
-
Navigate to the directory
zenoh-ts
-
Run the commands:
npx typedoc src/index.ts