kweb-core
kweb-core copied to clipboard
A Kotlin web framework
The `render()` function internally uses `span` as it's container element. Removing it would be a god send, but I don't think there is an easy way to do this so...
related: #68 In the event of a websocket connection failure, Kweb should exponentially back-off in the event that it is unable to establish a websocket connection - and display a...
When running my KWeb application in debug mode from the IDE, I would like to have the browser reload the page when there are code changes.
Samples aren't showing up in Kdocs, seems to be a regression of some kind in Dokka. I asked on Reddit about it [here](https://www.reddit.com/r/Kotlin/comments/oqryy1/is_there_a_current_explanation_for_how_to_use/).
Should be easy enough using [JSoup](https://jsoup.org/cookbook/input/parse-body-fragment). Ideally it could be made available online, similar to https://jsonformatter.curiousconcept.com/.
**Describe the bug** KVar's can have their values changed while the page is rendering. This causes the render on change, to not happen. **Expected behavior** A KVar being changed should...
Currently routing doesn't fully support browser history functionality, like handling the back button. See [routing.kt](https://github.com/kwebio/core/blob/master/src/main/kotlin/io/kweb/routing/routing.kt).
KWeb has a great potential. But I miss examples on how to do the usual stuff. For example, It's not clear from the documentation which state of the server is...
Is there a recommended way to update my page on a set interval? For example if I want to fetch a result from my database and render it to the...