pepper
pepper copied to clipboard
🌶️ Create reactive frontends without ever writing frontend code.
Bumps [github.com/gorilla/websocket](https://github.com/gorilla/websocket) from 1.4.0 to 1.4.1. Release notes Sourced from github.com/gorilla/websocket's releases. v1.4.1 Notable Changes ⚠️ This release fixes a potential denial-of-service (DoS) vector in gorilla/websocket, and we recommend that...
By default, go module will treat v1.0.0 as the latest, but actually, it's v0.0.1 The latest is v0.0.6, they don't even share the same APIs,so, maybe we can delete tag...
Hi, I went through your examples; and I like the overall idea and concept. Its an old idea made new again; but that's okay :) Do you happen to have...
I would love to see the server-side rendered DOM changes applied to the client-side only apply the changes ala React. Using [morphdom](https://github.com/patrick-steele-idem/morphdom) could be a good choice here as its...
Improve logging on the client and server-side to help with debugging. At the moment it's a bit raw and not always reliable to follow.
An interface to provide a standard way to save and restore state (perhaps a type of marshaller). This can be used by an adapter for things like autosave, or restoring...
Websockets can be flakey and the idea of the websocket dropping out for even a moment would be disastrous. I believe this can easily be resolved by: 1. When a...
The renderer uses a regexp to find events like `@click`, but that's problematic if it matches the wrong thing. It should provide the known events/bindings to the template as a...