so..i have a hobby project that would be nice to p...
# kotlin-native
n
so..i have a hobby project that would be nice to put on a raspi, but i might need it to expose a website for configuring it live (just editing a file) is any of the webserver libraries around suitable to be compiled for arm on raspberry pi ? so far in my googling all of those just mentioned graalvm and similar.. which i don't really want to deal with i just need very simple basic http functionality of PUT or POST to set different variables and GET routes to server static html and js
n
There are three HTTP server libraries available: 1. LWAN ( https://lwan.ws/ ) 2. LibHTTP ( https://www.libhttp.org/ ) 3. Libmicrohttpd ( https://www.gnu.org/software/libmicrohttpd/ )
👍 1
n
have there been kotlin bindings written for those or are those usually part of the projects and thats why i find nothing ? PS: found some stuff https://github.com/KwangIO/kwang but that seems probably unmaintained
n
Ktor Server currently isn't an option yet but it will be coming to Kotlin Native ( https://youtrack.jetbrains.com/issue/KTOR-746 ).
n
i obviously would love to just use ktor, this would be the best