15e4b75986
The snap version of Firefox cannot write to the /tmp location. Recommended workaround is to set TMPDIR environment variable to location that both geckodriver and firefox can write to e.g. $HOME/tmp. See https://github.com/mozilla/geckodriver/releases/tag/v0.31.0 and https://github.com/mozilla/geckodriver/issues/2010 This change adds the TMPDIR environment to allow testing with the Snap version of Firefox. The downside is a possibly orphan directory (~/tmp) containing geckodriver and v8-compile-cache-1000. |
||
---|---|---|
.. | ||
.cargo | ||
src | ||
tests | ||
.gitignore | ||
Cargo.toml | ||
LICENSE.md | ||
README.md | ||
wasm_build.sh | ||
wasm_setup_check.sh | ||
wasm_test.sh | ||
wasm-sourcemap.py |
veilid-wasm
This package is a Rust cargo crate the generates WebAssembly (WASM) bindings for veilid-core::VeilidAPI
, and outputs JavaScript and TypeScript interfaces for calling the WASM module.
Limitations
Running Veilid in the browser via WebAssembly has some limitations:
Browser-based limitaions
- TCP/UDP sockets are unavilable in the browser. This limits WASM nodes to communicating using WebSockets.
- Lookup of DNS records is unavaible in the browser, which means bootstrapping via TXT record also will work. WASM nodes will need to connect to the bootstrap server directly via WebSockets, using this URL format:
ws://bootstrap.veilid.net:5150/ws
in thenetwork.routing_table.bootstrap[]
section of the veilid config. - Since a WASM node running in the browser can't open ports, WASM nodes select another node to act as it's Inbound Relay, so other nodes can react out to it and open a WS connection.
- Because of browser security policy regarding WebSockets:
ws://
only works onhttp://
siteswss://
only works onhttps://
site with SSL certificates.
Running WASM on HTTPS sites [Not currently implemented]
Since WSS connections require WSS peers with valid SSL certificates, veilid-core
plans to implment a feature called Outbound Relays. Outbound Relays will likely be hosted by the same host of the WASM web-app, and must run have valid SSL certificates that are signed by a Certificate Authority that's trusted by browsers. Outbound Relays will allow WASM nodes to communicate to other nodes over TCP/UDP/WS/WSS through the Outbound Relay's connection.
Running unit tests
Prerequsites:
- NodeJS - ensure
node
andnpm
are installed. - Firefox browser installed, and available as
firefox
.
Run the test script:
./wasm_test.sh
to test with debug symbols../wasm_test.sh release
to test against a release build.
Development notes
Important cargo crates and their functions
wasm-bindgen
is used to generate interop code between JavaScript and Rust, as well as basic TypeScript types.tsify
is used to export TypeScript types in places wherewasm-bindgen
runs into limitations, or in places where you don't need the mappings thatwasm-bindgen
generates.serde-wasm-bindgen
enables serialization/deserialization.