https://github.com/utybo/tegral
🟣 A Kotlin framework for web applications, cool libraries that go along with it!
https://github.com/utybo/tegral
back-end kotlin ktor web
Last synced: 2 months ago
JSON representation
🟣 A Kotlin framework for web applications, cool libraries that go along with it!
- Host: GitHub
- URL: https://github.com/utybo/tegral
- Owner: utybo
- License: apache-2.0
- Created: 2022-05-11T19:31:25.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-11-16T17:55:33.000Z (8 months ago)
- Last Synced: 2025-03-31T20:12:16.775Z (4 months ago)
- Topics: back-end, kotlin, ktor, web
- Language: Kotlin
- Homepage: https://tegral.zoroark.guru
- Size: 4.23 MB
- Stars: 39
- Watchers: 2
- Forks: 4
- Open Issues: 22
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
#
Tegral
 [](LICENSE) [](https://github.com/EpiLink/EpiLink/releases) [](https://ktlint.github.io/)
**Tegral** is a collection of reusable Kotlin components, like libraries and frameworks, that can be used by themselves or combined together to create back-ends apps with Tegral Web.
[**DOCUMENTATION**](https://tegral.zoroark.guru) | [**CHANGELOG**](CHANGELOG.md)
> âš¡ Tegral is in an alpha status. Please report any issue you may find!
```kotlin
class HelloController : KtorController() {
override fun Routing.install() {
get("/") {
call.respondText("Hello World!")
}
}
}fun main() {
tegral {
put(::HelloController)
}
}
```Each Tegral library is reusable and extensible. Pick the most suitable libraries for your project, or maybe even all of them for a full Tegral-based application.