Hans Raaf
Hans Raaf
As [documented](https://go-app.dev/reference#Route), `app.Route("/", &manager)` is not using the value of manager, but it's type. You need to initialize its values in `OnMount()` or try the new [RouteFunc()](https://go-app.dev/reference#RouteFunc) for initializing the...
It needs to be the correct type, though. You cannot hand over `SomeOtherUniqueType` and then create the needed type from it. I think there is no way to give "only"...
> https://go.dev/play/p/SYSjyVvp1ui Well, that is a clever trick with the (limited) generics support and does not look very appealing to me. Even this does not take a type anyway. It...
GopherJS has 32 bit int, which would give some of my apps problems. But I am also not sure how this will work when using GopherJS because afaik the go-app...
> JS that can be included directly in the page? You could bundle the WASM too but the whole PWA aspect is about using the fetch cache interface of the...
Well, we have some much larger and more complex applications than [lofimusic](https://github.com/maxence-charriere/lofimusic). It would be interesting to check out if they work. One public proof of concept is at https://github.com/oderwat/go-nats-app....
@nevkontakte very cool. I will have a look at this. I hope we can agree that it is fine to use what is "mainstream" and still be able to see...
@nevkontakte I checked out the GopherJS and I am impressed. I hope I get some time to check this with some other projects of us. It is fascinating that it...
@nevkontakte Sorry, but I forgot to report back from trying to build one of our larger projects. Here is the short version of the journey: I had to basically delete...
@maxence-charriere to get the right gopherjs you need to install it like this: ``` # install the correct GopherJS go install github.com/gopherjs/gopherjs@master go install golang.org/dl/go1.18.6@latest # clone the converted go-nats...