Jex Compiler Server
Server that compiles and runs Jex code.
Using
To run Jex source code you should PUSH it to the server.
POST http://localhost:8080
Content-Type: text/plain
println(1+1)
or with CURL
curl -H "Content-Type: text/plain" -d "println(fact(5))" localhost:8080
Running
You can run the server as a simple Rust binary crate.
The PORT environment variable must be set, it determines which port the server will listen on.
For example:
PORT=8080 cargo run