All Projects → alpas → Alpas

alpas / Alpas

Licence: mit
🚀 The Rapid and Delightful Kotlin Web Framework. Easy, elegant, and productive!

Programming Languages

java
68154 projects - #9 most used programming language
kotlin
9241 projects

Projects that are alternatives of or similar to Alpas

Node Hot Loader
Hot module replacement (hot reload) for Node.js applications. Develop without server restarting.
Stars: ✭ 111 (-33.13%)
Mutual labels:  server-side
Jolla
Python Web Framework
Stars: ✭ 132 (-20.48%)
Mutual labels:  webframework
Rapidcms
RapidCMS is a Blazor framework which allows you to build a responsive and flexible CMS purely from code. It provides a basic set of editors and controls, and is fully customisable.
Stars: ✭ 149 (-10.24%)
Mutual labels:  server-side
Raxx kit
Get started with Raxx + Elixir
Stars: ✭ 120 (-27.71%)
Mutual labels:  webframework
Ntoastnotify
Asp.Net Core abstraction for server side rendered toast notifications using toast.js or noty.js. Supports AJAX calls as well.
Stars: ✭ 127 (-23.49%)
Mutual labels:  server-side
Silicon
A high performance, middleware oriented C++14 http web framework please use matt-42/lithium instead
Stars: ✭ 1,721 (+936.75%)
Mutual labels:  webframework
Protoo
Minimalist and extensible Node.js signaling framework for multi-party Real-Time applications
Stars: ✭ 109 (-34.34%)
Mutual labels:  server-side
Ninja
Ninja is a full stack web framework for Java. Rock solid, fast and super productive.
Stars: ✭ 1,892 (+1039.76%)
Mutual labels:  webframework
App Turbo
A framework based on tornado for easier development, scaling up and maintenance
Stars: ✭ 131 (-21.08%)
Mutual labels:  webframework
Pando.py
Filesystem dispatch + Simplates + Python = a nice web framework.
Stars: ✭ 146 (-12.05%)
Mutual labels:  webframework
Rapidoid
Rapidoid - Extremely Fast, Simple and Powerful Java Web Framework and HTTP Server!
Stars: ✭ 1,571 (+846.39%)
Mutual labels:  webframework
Nim websitecreator
Nim fullstack website framework - deploy a website within minutes
Stars: ✭ 124 (-25.3%)
Mutual labels:  webframework
Sactive Web
🚀 A dependency injection web framework for Node.js.
Stars: ✭ 143 (-13.86%)
Mutual labels:  webframework
Bingo
简洁优雅的 Go Web 框架(暂不更新,预计一年后继续更新)
Stars: ✭ 119 (-28.31%)
Mutual labels:  webframework
Gotham
A flexible web framework that promotes stability, safety, security and speed.
Stars: ✭ 1,935 (+1065.66%)
Mutual labels:  webframework
Nim Basolato
An asynchronous fullstack web framework for Nim.
Stars: ✭ 111 (-33.13%)
Mutual labels:  webframework
Handlebars Webpack Plugin
Renders your html-template at build time
Stars: ✭ 135 (-18.67%)
Mutual labels:  server-side
Webgo
A minimal framework to build web apps; with handler chaining, middleware support; and most of all standard library compliant HTTP handlers(i.e. http.HandlerFunc).
Stars: ✭ 165 (-0.6%)
Mutual labels:  webframework
Webcontext
webcontext is a web framework and web application server based on node.js
Stars: ✭ 151 (-9.04%)
Mutual labels:  webframework
Srs
SRS is a simple, high efficiency and realtime video server, supports RTMP, WebRTC, HLS, HTTP-FLV, SRT and GB28181.
Stars: ✭ 16,734 (+9980.72%)
Mutual labels:  server-side

Alpas - The Rapid and Delightful Kotlin Web Framework. Easy, elegant, and productive! 🚀

Alpas is a Kotlin-based web framework that gets you creating web apps and APIs simply, and quickly.

Routes. Simple, and defined.

import example.controllers.WelcomeController
import dev.alpas.routing.RouteGroup
import dev.alpas.routing.Router

fun Router.addRoutes() = apply {
    get("/", WelcomeController::welcome)
}

Controllers. Write less, do more.

import dev.alpas.http.HttpCall
import dev.alpas.routing.Controller

class WelcomeController : Controller() {
    fun welcome(call: HttpCall) {
        call.render("dashboard")
    }
}

Batteries-included

Alpas strives to be simple and elegant and wants to serve you whether you have written JVM-based web apps before or not. There is no huge learning curve to get started and Alpas comes bundled with what you'll need to build a powerful web application or API.

  • Authentication
  • Notifications
  • Security
  • Emails
  • Queues
  • Front-End (Pebble, Vuejs, TailwindCSS)

We have sweated picking the good parts, so you don’t have to!

Want to use a different library? That's also quick and easy to do with Alpas.

Get Started Quickly

The Alpas documentation has everything you need to get started.

  • Installation - Simple steps to get your Alpas environment ready.
  • Quick Start Guide - Walks you through creating a To-Do task list. If you are a beginner to web development, this is for you!
  • Starter Template - Starting a new project? The starter template will quickly get you rolling.

Examples

Sometimes, it's easiest to see the possibilities of a new framework by checking out what modules are available in the ecosystem and by looking at real-life examples. Alpas Resources has a curated list of resources available to you so that you can get acquainted with all things Alpas.

Contribution

Alpas is an open-source project and we appreciate contributions.

If you don't want to directly contribute to the core, you can still contribute in other ways; such as: open issues for encountered bugs, add feature requests, submit documentation updates, and so on.

We want you to enjoy writing web apps with Alpas. If you are not, please let us know! We'll keep improving Alpas until it is just right for all of us. The best way to let us help you is by joining our official Slack and asking questions. Please do!

Sponsors

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].