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
- Host: GitHub
- URL: https://github.com/thesurlydev/kotlin-minimal-server
- Owner: thesurlydev
- Created: 2024-08-10T18:24:33.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-11T15:57:39.000Z (almost 2 years ago)
- Last Synced: 2025-02-06T18:52:24.155Z (over 1 year ago)
- Language: Kotlin
- Size: 17.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```