kobweb
kobweb copied to clipboard
A modern framework for full stack web apps in Kotlin, built upon Compose HTML
This isn't type safe and is lazy. If people want those, they can use the `styleModifier` escape hatch. This is a backwards incompatible change in a few cases so should...
We need to get Kobweb documented (at https://kobweb.varabyte.com). Instead of creating a bunch of one off bugs, I've decided to collect everything here, both as it will be easier to...
We need to get Kobweb documented (at https://kobweb.varabyte.com/docs). This epic is reserved for higher level guides. These represent common user stories that walk a user through many steps. - [...
Right now a button only has active states. We need a way to mark a button as disabled so that we can reject clicks from it automatically and grey it...
I've heard one report that Mac + M1 fails with an error like so: ``` > Configure project : Kotlin Multiplatform Projects are an Alpha feature. See: https://kotlinlang.org/docs/reference/evolution/components-stability.html. To hide...
Currently, a full docker file looks something like: ``` FROM debian:stable-slim USER root # Copy the project code to app dir COPY . /app # Install OpenJDK-11 (earliest JDK kobweb...
Context: https://github.com/varabyte/kobweb/issues/99#issuecomment-1073292460 Basically, the first pass of this bug is to experiment seeing if we can replace the logic in the Gradle plugin around kobweb export to not use Chrome...
Probably need a way to choose a default value for all assets with the ability to configure caching headers for one-off cases. For reference: * https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Cache-Control * https://ktor.io/docs/caching.html * https://nextjs.org/docs/going-to-production#caching
For example, when you hover over element X it applies some effect to element Y (e.g. making it visible or invisible, or change its color) Not immediately urgent since you...