Artifacts using Ceylon Network Platform Module (3)
# The Cayla Web Framework
Cayla makes easy creating web application with Ceylon.
## Creating a simple application in seconds
### Import the Cayla module
module my.app "1.0.0" {
import io.cayla.web "0.3.1";
}
### Write the controller
import io.cayla.web { ... }
object controller {
route("/")
shared class Index() extends Handler() {
Response handle() => ok {
"Hello World";
};
}
}
shared void run() {
value application = ...
Last Release on Feb 13, 2021
gyokuro is a framework written in Ceylon, inspired by Sinatra
and Spark, for creating web applications with very few boilerplate.
It is based on the Ceylon SDK and uses ceylon.net.
Last Release on Feb 13, 2021
- Prev
- 1
- Next