This module defines APIs for defining HTTP endpoints and executing HTTP servers.
A [[ceylon.http.server::Server]] represents a HTTP
server. A new `Server` may be defined using
[[ceylon.http.server::newServer]].
void runServer() {
//create a HTTP server
value server = newServer {
//an endpoint, on the path /hello
Endpoint {
path = startsWith("/hello");
//handle requests to this path
service(Request ...
Artifacts using Ceylon Http Server Platform Module (2)
An extension point for gyokuro to provide support for
a template engine.
Last Release on Feb 13, 2021
2.Core
gyokuro is a framework written in Ceylon, similar to Sinatra
and Spark, for creating web applications with very little boilerplate.
It is based on the Ceylon SDK and uses `ceylon.http.server`.
Last Release on Feb 13, 2021
- Prev
- 1
- Next
