An open API service indexing awesome lists of open source software.

https://github.com/thesurlydev/kotlin-minimal-server

A minimal Kotlin web server
https://github.com/thesurlydev/kotlin-minimal-server

Last synced: about 1 year ago
JSON representation

A minimal Kotlin web server

Awesome Lists containing this project

README

          

# kotlin-minimal-server

A near zero dependency Kotlin web server.

[kotlin-minimal-example](https://github.com/thesurlydev/kotlin-minimal-example) is an example implementation.

## Goals

* No annotations
* No reflection
* Minimal dependencies

## Compile and Package

```shell
./gradlew clean build
```

## Dependency

### Gradle (Kotlin DSL)

```kotlin
implementation("dev.surly:kotlin-minimal-server:0.1.0")
```

### Gradle (Groovy DSL)

```groovy
implementation 'dev.surly:kotlin-minimal-server:0.1.0'
```

### Maven

```xml

dev.surly
kotlin-minimal-server
0.1.0

```