v86/docs/networking.md

16 lines
854 B
Markdown
Raw Normal View History

2015-01-11 23:40:39 +01:00
Emulating a network card is supported. It can be used by passing the
`network_relay_url` option to `V86Starter`. The url must point to a running
WebSockets Proxy. The source code for WebSockets Proxy can be found at
https://github.com/benjamincburns/websockproxy.
The network card could also be controlled programatically, but this is
currently not exposed.
2022-09-19 16:13:41 +02:00
There is no built-in support for NodeJS, but networking only depends on a
browser-compatible `WebSocket` constructor being present in the global scope.
**NOTE:** original `benjamincburns/jor1k-relay:latest` docker image has
throttling built-in by default which will degrade the networking.
2022-11-20 22:29:27 +01:00
`bellenottelling/websockproxy`docker image has this throttling removed via
2022-09-19 16:13:41 +02:00
[websockproxy/issues/4#issuecomment-317255890](https://github.com/benjamincburns/websockproxy/issues/4#issuecomment-317255890).