Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 19 days 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 (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-26T21:33:26.000Z (19 days ago)
- Last Synced: 2024-10-26T22:39:58.343Z (19 days ago)
- Topics: back-end, kotlin, ktor, web
- Language: Kotlin
- Homepage: https://tegral.zoroark.guru
- Size: 4.41 MB
- Stars: 37
- Watchers: 2
- Forks: 4
- Open Issues: 26
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Tegral
![GitHub Workflow Status (CI)](https://img.shields.io/github/actions/workflow/status/utybo/Tegral/ci.yaml?label=CI&logo=github&style=for-the-badge) [![Apache 2 license](https://img.shields.io/badge/License-Apache%202-lightgray?style=for-the-badge)](LICENSE) [![Latest release](https://img.shields.io/github/v/release/utybo/Tegral?color=purple&include_prereleases&label=Latest%20release&style=for-the-badge)](https://github.com/EpiLink/EpiLink/releases) [![ktlint](https://img.shields.io/badge/code%20style-%E2%9D%A4-FF4081.svg?style=for-the-badge)](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.