io.jooby:jooby-kotlin

3.7.0last stable release 1 week ago
Complexity Score
High
Open Issues
N/A
Dependent Projects
4

License

  • Apache-2.0
    • Yesattribution
    • Permissivelinking
    • Permissivedistribution
    • Permissivemodification
    • Yespatent grant
    • Yesprivate use
    • Permissivesublicensing
    • Notrademark grant

Readme

∞ do more, more easily

Jooby is a modern, performant and easy to use web framework for Java and Kotlin built on top of your favorite web server.

Java:

import static io.jooby.Jooby.runApp;

public class App {

  public static void main(final String[] args) {
    runApp(args, app -> {
      app.get("/", ctx -> "Welcome to Jooby!");
    });
  }
}

Kotlin:

import io.jooby.runApp

fun main(args: Array<String>) {
  runApp(args) {
    get ("/") {
      "Welcome to Jooby!"
    }
  }
}

documentation

Documentation is available at https://jooby.io

help

Discord

support my work

  • Sponsor
  • Paypal
  • Patreon
  • support@jooby.io

sponsors

Logo Sponsor @premium-minds @tipsy @mercedes-benz

Previous version

  • v2: Documentation and source code
  • v1: Documentation and source code

author

Edgar Espina

license

Apache License 2

Dependencies

No runtime dependency information found for this package.

CVE IssuesActive
0
Scorecards Score
5.70
Test Coverage
No Data
Follows Semver
No
Github Stars
1,730
Dependenciestotal
6
DependenciesOutdated
2
DependenciesDeprecated
0
Threat Modelling
No Data
Repo Audits
No Data

Learn how to distribute io.jooby:jooby-kotlin in your own private Maven registry

mvn install io.jooby:jooby-kotlin
Processing...
Done

42 Releases