bynk 0.97.0

The Bynk developer front-end — links the compiler pipeline in-process and orchestrates the Node toolchain (doctor / new / dev).
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!")
	}
}