dom icon indicating copy to clipboard operation
dom copied to clipboard

DOM library for Go and WASM

Results 11 dom issues
Sort by recently updated
recently updated
newest added

There are now two forks on Github that have on-going maintenance while there's not really any activity here ... should I switch to one of the maintained projects? As you've...

The net.Conn interface doesn't match how WebSockets work as it's not a stream oriented protocol. See https://github.com/golang/go/issues/18152#issuecomment-264322154 and https://github.com/gopherjs/websocket/issues/29 I think it'd be a good idea to recommend my [library](https://github.com/nhooyr/websocket)...

If compiling with Go 1.13, a compiling error comes up: # github.com/dennwc/dom/js ../../../../go/pkg/mod/github.com/dennwc/[email protected]/js/bytes.go:20:2: undefined: js.TypedArray ../../../../go/pkg/mod/github.com/dennwc/[email protected]/js/bytes.go:30:7: undefined: js.TypedArrayOf The change log (https://golang.org/doc/go1.13#syscall/js) states that the types have been changed: "TypedArrayOf...

bug

I'd like to start using the library but I'm too lazy to read the whole code so it would be nice to see some simple examples in readme

In PR #41 I talked about simplifying the signatures of several methods in ``js.go`` but rejected that as I thought it would be a breaking change. Since then, I've realized...

question

Hello ! Is there any plan to integrate the navigator interface ? https://developer.mozilla.org/en-US/docs/Web/API/Navigator Or is there a way to access the same API using wasm ?

there is a pure webrtc golang impl here:https://github.com/pions/webrtc SO i was thinking its maybe possible to do GRPC over Webrtc. This could then allow p2p style architecture. it woudl be...

How does the API of this package compare to [`honnef.co/go/js/dom`](https://godoc.org/honnef.co/go/js/dom), a popular DOM package for GopherJS? /cc @dominikh `honnef.co/go/js/dom` has issue dominikh/go-js-dom#57 to make API changes to make it possible...

question