Bradley Matusiak
Bradley Matusiak
@byCedric to reproduce. Create a blank project. Install socket.io-client Create a file called socket.js , paste example. Import socket.js in main entry. $ npm run web Follow socket.io's examples to...
> Alright, but how would an Expo app connect to socket io? I don't see an overlap in there, or am I missing the point? > > Does connecting from...
i found docs leading to webpack configuration, https://docs.expo.dev/guides/customizing-webpack/ here, i was able to resolve the issue
yes please use gitter chat,, gun does have a [Dockerfile](https://github.com/amark/gun/blob/master/Dockerfile) my thought is to find the docker docs about how to run a project with a Dockerfile
``` git clone https://github.com/amark/gun.git cd gun docker build -t gun . docker run -p 8765:8765 -t gun ``` then open http://localhost:8765
some of us use custom js environments that don't have .warn ? and is why it has .log as a fallback? this is the top reason why the pr cant...
https://www.espruino.com/Reference#console true,, it could be aliased, but with embedded devices need less code because they only have so much storage
nice!. will re-review when the time comes
I think the global is called WorkerGlobalScope or something stupid
gun is not promise/async based.. the best way to handle async stuff is to wrap with your own promise logic like this example ```js var Gun = require("gun") var gun...