Guinep are small tropical fruits from the Caribbean and Central/Southern America. They are described to taste like a cross between Lime and Lychee.
Automatic UI forms for Scala 3 functions
def upperCaseText(text: String): String =
text.toUpperCase
@main
def run =
guinep.web(upperCaseText)
This will start a local web server with auto generated endpoints for running all listed functions. And an auto generated front-end with a form for each function.
libraryDependencies ++= Seq(
"io.github.kacperfkorban" %% "guinep-web" % "version_from_releases"
)
//> using lib "io.github.kacperfkorban::guinep-web:version_from_releases"
GUInep
only exposes one function guinep.web
which takes some number of functions as arguments.
def upperCaseText(text: String): String =
text.toUpperCase
def rollDice(sides: Int): Int =
scala.util.Random.nextInt(sides) + 1
@main
def run =
guinep.web(
upperCaseText,
rollDice
)
Currently GUInep doesn't support:
- Functions with multiple parameter lists (and by extension - extension methods) - #33
- Fancier GADTs with unobvious inheritance, type bounds and variance - #30
- Union and intersection types - #44
- Opaque types - #49
If you have any ideas on how to improve GUInep, feel free to open an issue.
All bug reports and feature requests are highly appreciated.