Jonas Gloning
Jonas Gloning
Hey @SharkSharp, thanks for the PR! Currently testing on the `rc` branch.
Hey @DiuDono. Your local PeerJS server was probably not running (on that port/path). Does it work againt the cloud server (without `host,secure,port`)?
I don’t think your `setId` function will work. Ids should be a read-only property. If you need a Peer with a specific id, just `.destroy()` the old one and create...
Hey @Licege. Thanks for the report! Can you post a minimal working example of this? I would like to reproduce this. Also, please add: - Browser vendor and version -...
Hey @chientrm, interesting idea! Can you tell me a bit more about your use case?
Hey @allanbbs, Thank you for the report. How do you provoke the error? Can you post some logs (with `{debug: 3}`) and/or something to reproduce this?
Hey @sergeyyurkov1, thanks for the request. I’ll put in on the roadmap :)
`wasm-pack` downloads `wasm-opt` version 90 from December 2019 without SIMD support https://github.com/rustwasm/wasm-pack/blob/4ae6306570a0011246c39c8028a4f11a4236f54b/src/install/mod.rs#L209-L210 You can supply your own, more recent version: Install https://github.com/WebAssembly/binaryen in your path Run with `--mode no-install` ```bash...
PeerJS is back online :)
It's a bit more complicated: The problem is not ordering incoming data but outgoing data. The `binarypack` encoding produces javascript `Blob`s, while the underlying data channel accepts only `ArrayBuffer`s. Converting...