Popularity
7.8
Growing
Activity
8.3
Declining
562
17
30
Programming language: Kotlin
License: GNU Lesser General Public License v3.0 only
Tags:
Web
Latest version: v0.6.4
core alternatives and similar libraries
Based on the "Web" category.
Alternatively, view core alternatives based on common mentions on social networks and blogs.
-
vertx-lang-kotlin
This module provides Kotlin language bindings including DSL and extension functions for vert.x 3 -
skrape.it
HTML testing and web scraping library providing an intuitive DSL to receive and either extract or check markup (a jSoup wrapper DSL with extra functionality) ๐ -
lambda-kotlin-request-router
A REST request routing layer for AWS lambda handlers written in Kotlin -
bootique-kotlin
Provides extension function and features for smooth development with Bootique and Kotlin. -
Zeko-RestApi
Fun, simple & lightweight async RESTful API framework on top of Vert.x. Automatic Swagger doc & code generation via Kotlin kapt -
graphql-kotlin-toolkit
GraphQL toolkit for Kotlin (includes code generator and spring boot integration)
Get performance insights in less than 4 minutes
Scout APM uses tracing logic that ties bottlenecks to source code so you know the exact line of code causing performance issues and can get back to building a great product faster.
Sponsored
scoutapm.com
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest. Visit our partner's website for more details.
Do you think we are missing an alternative of core or a related project?
Popular Comparisons
README
Kweb ๐ฆ
Quick Start
Read Getting Started from the User Manual.
Overview
Kweb is a new way to create beautiful, efficient, and scalable websites in Kotlin, where server-browser communication is handled automatically.
Example
import kweb.*
fun main() {
Kweb(port = 16097) {
doc.body.new {
h1().text("Hello World!")
}
}
}