{"id":13428845,"url":"https://github.com/alpas/alpas","last_synced_at":"2026-01-14T20:17:11.118Z","repository":{"id":52984852,"uuid":"222342832","full_name":"alpas/alpas","owner":"alpas","description":"🚀 The Rapid and Delightful Kotlin Web Framework. Easy, elegant, and productive!","archived":false,"fork":false,"pushed_at":"2024-07-10T13:59:24.000Z","size":1135,"stargazers_count":181,"open_issues_count":8,"forks_count":6,"subscribers_count":12,"default_branch":"master","last_synced_at":"2025-11-16T05:04:05.762Z","etag":null,"topics":["alpas","backend-server","java","kotlin","kotlin-web","server-side","webframework"],"latest_commit_sha":null,"homepage":"https://alpas.dev","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/alpas.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-11-18T01:58:31.000Z","updated_at":"2025-10-12T16:26:25.000Z","dependencies_parsed_at":"2024-10-27T06:38:12.208Z","dependency_job_id":"16fb47cb-f29e-4dd7-9796-d650104add90","html_url":"https://github.com/alpas/alpas","commit_stats":null,"previous_names":[],"tags_count":62,"template":false,"template_full_name":null,"purl":"pkg:github/alpas/alpas","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alpas%2Falpas","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alpas%2Falpas/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alpas%2Falpas/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alpas%2Falpas/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/alpas","download_url":"https://codeload.github.com/alpas/alpas/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alpas%2Falpas/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28434422,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T18:57:19.464Z","status":"ssl_error","status_checked_at":"2026-01-14T18:52:48.501Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["alpas","backend-server","java","kotlin","kotlin-web","server-side","webframework"],"created_at":"2024-07-31T01:01:06.584Z","updated_at":"2026-01-14T20:17:11.098Z","avatar_url":"https://github.com/alpas.png","language":"Kotlin","readme":"\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://alpas.dev\" target=\"_blank\"\u003e\n    \u003cimg src=\"https://alpas.dev/images/Alpas.png\"\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n\n### Alpas - The Rapid and Delightful Kotlin Web Framework. Easy, elegant, and productive! 🚀\n\n[Alpas](https://alpas.dev) is a Kotlin-based web framework that gets you creating web apps and APIs simply, and quickly. \n\n#### Routes. Simple, and defined. \n\n```kotlin\n\nimport example.controllers.WelcomeController\nimport dev.alpas.routing.RouteGroup\nimport dev.alpas.routing.Router\n\nfun Router.addRoutes() = apply {\n    get(\"/\", WelcomeController::welcome)\n}\n\n```\n\n#### Controllers. Write less, do more. \n\n```kotlin\n\nimport dev.alpas.http.HttpCall\nimport dev.alpas.routing.Controller\n\nclass WelcomeController : Controller() {\n    fun welcome(call: HttpCall) {\n        call.render(\"dashboard\")\n    }\n}\n\n```\n\n## Batteries-included\nAlpas strives to be simple and elegant and wants to serve you whether you have written JVM-based web\napps before or not. There is no huge learning curve to get started and Alpas comes bundled with what you'll need\nto build a powerful web application or API. \n\n- Authentication \n- Notifications\n- Security\n- Emails \n- Queues\n- Front-End (Pebble, Vuejs, TailwindCSS)\n\nWe have sweated picking the good parts, so you don’t have to!\n\nWant to use a different library? That's also quick and easy to do with Alpas. \n\n## Get Started Quickly\n\nThe [Alpas documentation][alpas-docs] has everything you need to get started. \n\n- [Installation](https://alpas.dev/docs/installation) - Simple steps to get your Alpas environment ready. \n- [Quick Start Guide](https://alpas.dev/docs/quick-start-guide-todo-list) - Walks you through creating a To-Do task list. \nIf you are a beginner to web development, this is for you! \n- [Starter Template](https://github.com/alpas/starter) - Starting a new project? The starter template will \nquickly get you rolling.\n\n## Examples\nSometimes, it's easiest to see the possibilities of a new framework by checking out what modules are available in \nthe ecosystem and by looking at real-life examples. [Alpas Resources][alpas-resources] has a curated list of resources \navailable to you so that you can get acquainted with all things Alpas. \n\n## Contribution\nAlpas is an open-source project and we appreciate contributions. \n\nIf you don't want to directly contribute to the core, you can still contribute in other ways; such as: open issues for \nencountered bugs, add feature requests, submit documentation updates, and so on. \n\nWe want you to enjoy writing web apps with Alpas. If you are not, please let us know! We'll keep improving Alpas until it \nis just right for all of us. The best way to let us help you is by joining our \n[official Slack][alpas-slack] and asking questions. [Please do!][alpas-slack]\n\n## Sponsors\n\n- [DigitalOcean](https://www.digitalocean.com/)\n\n\n[happy-kotlin]: https://medium.com/signal-v-noise/kotlin-makes-me-a-happier-better-programmer-1fc668724563\n[alpas-slack]: https://join.slack.com/t/alpasdev/shared_invite/enQtODcwMjE1MzMxODQ3LTJjZWMzOWE5MzBlYzIzMWQ2MTcxN2M2YjU3MTQ5ZDE4NjBmYjY1YTljOGIwYmJmYWFlYjc4YTcwMDFmZDIzNDE\n[alpas-docs]: https://alpas.dev/docs\n[alpas-resources]: https://github.com/alpas/resources\n","funding_links":[],"categories":["Libraries","开发框架"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falpas%2Falpas","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falpas%2Falpas","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falpas%2Falpas/lists"}