Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a web framework for kotlin native

I want to create an app exposing a web server with a REST API in Kotlin Native, but I can't find any recent project or lib. There's kwang but it doesn't seems to be maintained anymore and it depends on another C library.

like image 653
ThoSil Avatar asked Nov 19 '19 21:11

ThoSil


People also ask

Does Kotlin have a framework?

Kotlin doesn't have the Android framework, neither does JAVA. The Android API was built using the JAVA API. This means the classes and methods contained in the JAVA language are used to create the classes and methods for Android. Android applications compile and run on a modified Java virtual machine, this is why.

Is Kotlin Native a framework?

Cross platform with Kotlin/Native (Android and IOS Apps) This framework contains all declarations and binaries that are required by Objective-C and Swift. Kotlin/Native doesn't use common UI , it focuses on common Business logic.

Can I use Kotlin for Web development?

Kotlin is supported by the official integrated development environment (IDE) for Android development, Android Studio. So programmers can easily use Kotlin's code when working on Android development.


1 Answers

Ktor 1.4 (WIP) will support Kotlin/Native as a Server .

https://github.com/ktorio/ktor/issues/571#issuecomment-562118651

Kotlin/Native is Beta for now , so There is a long way to go

like image 185
Mahdi Safarmohammadloo Avatar answered Oct 09 '22 07:10

Mahdi Safarmohammadloo