# 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 = ...
Tags | webceylon |
---|---|
HomePage | https://github.com/vietj/ceylon-cayla |
Date | Feb 13, 2021 |
Files | pom (8 KB) jar (242 KB) View All |
Repositories | Ceylon |
Ranking | #402784 in MvnRepository (See Top Artifacts) |
Used By | 1 artifacts |
Note: this artifact is located at Ceylon repository (https://modules.ceylon-lang.org/maven/1/)
Compile Dependencies (2)
Licenses
License | URL |
---|---|