bynk 0.60.0

The Bynk driver — a thin orchestrator over the bynkc compiler and the Node toolchain (cargo is to rustc as bynk is to bynkc).
Documentation
1
2
3
4
5
6
7
8
9
10
context appname

consumes bynk { Logger }

service api from http {
	on GET("/") by v: Visitor () -> Effect[HttpResult[String]] given Logger {
		let _ <- Logger.info("hello from appname")
		Ok("Hello from appname!")
	}
}