All Projects → 3redronin → mu-server

3redronin / mu-server

Licence: MIT license
A lightweight modern webserver for Java

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to mu-server

Agoo
A High Performance HTTP Server for Ruby
Stars: ✭ 679 (+2090.32%)
Mutual labels:  webserver, sse
go-gin-web-server
Deploy Go Gin on Render
Stars: ✭ 23 (-25.81%)
Mutual labels:  webserver, sse
hasses
Hyper's Asynchronous Server Sent event (SSE) notification Server
Stars: ✭ 18 (-41.94%)
Mutual labels:  webserver, sse
Iodine
iodine - HTTP / WebSockets Server for Ruby with Pub/Sub support
Stars: ✭ 720 (+2222.58%)
Mutual labels:  webserver, sse
Criollo
A powerful Cocoa web framework and HTTP server for macOS, iOS and tvOS.
Stars: ✭ 229 (+638.71%)
Mutual labels:  webserver
Fiery
A flexible and lightweight web server
Stars: ✭ 203 (+554.84%)
Mutual labels:  webserver
Appweb
Appweb Community Edition Embedded Web Server
Stars: ✭ 196 (+532.26%)
Mutual labels:  webserver
My Ttgo Watch
Firmware for a ttgo-watch2020-v1 smartwatch based on ESP32 from LilyGo.
Stars: ✭ 192 (+519.35%)
Mutual labels:  webserver
bmcweb
A do everything Redfish, KVM, GUI, and DBus webserver for OpenBMC
Stars: ✭ 109 (+251.61%)
Mutual labels:  webserver
ternary-logic
Support for ternary logic in SSE, XOP, AVX2 and x86 programs
Stars: ✭ 21 (-32.26%)
Mutual labels:  sse
Hfs2
web based file server
Stars: ✭ 220 (+609.68%)
Mutual labels:  webserver
Umajs
Umajs,easy-to-use framework base on Typescript
Stars: ✭ 209 (+574.19%)
Mutual labels:  webserver
Router.cr
Minimum High Performance Middleware for Crystal Web Server.
Stars: ✭ 231 (+645.16%)
Mutual labels:  webserver
Bitnami Docker Nginx
Bitnami nginx Docker Image
Stars: ✭ 198 (+538.71%)
Mutual labels:  webserver
EthernetWebServer SSL
Simple TLS/SSL Ethernet WebServer, HTTP Client and WebSocket Client library for for AVR, Portenta_H7, Teensy, SAM DUE, SAMD21, SAMD51, STM32F/L/H/G/WB/MP1, nRF52 and RASPBERRY_PI_PICO boards using Ethernet shields W5100, W5200, W5500, ENC28J60 or Teensy 4.1 NativeEthernet/QNEthernet. It now supports Ethernet TLS/SSL Client. The library supports …
Stars: ✭ 40 (+29.03%)
Mutual labels:  webserver
Elli
Simple, robust and performant Erlang web server
Stars: ✭ 194 (+525.81%)
Mutual labels:  webserver
Voovan
Voovan是高性能异步通信、HTTP服务器和客户端通信、动态编译支持、数据库操作帮助类等工具的框架, 如果项目觉得不错, 请点一下 star, 谢谢
Stars: ✭ 221 (+612.9%)
Mutual labels:  webserver
Butterfly Server
The Everything is Real-Time C# Backend for Single Page Applications
Stars: ✭ 247 (+696.77%)
Mutual labels:  webserver
Logarr
“Logarr” is a self-hosted PHP web app that consolidates, formats, and displays log and text files for easy analysis and monitoring.
Stars: ✭ 216 (+596.77%)
Mutual labels:  webserver
Wok
A cherrypy framework for multi-purpose plug-ins
Stars: ✭ 215 (+593.55%)
Mutual labels:  webserver

GitHub

mu-server

A modern Java web server, based on Netty. Currently in beta.

Please visit https://muserver.io for full documentation.

Getting started is as easy as:

MuServer server = MuServerBuilder.httpsServer()
    .addHandler(Method.GET, "/blah/{id}",
        (request, response, pathParams) -> {
            response.write("The ID is " + pathParams.get("id"));
        })
    .start();

Features

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].