(nearly) zero-cost bindings to express
Run the following in your console:
$ yarn add rescript-express express
Then add rescript-express
to your bsconfig.json
's bs-dependencies
:
{
"bs-dependencies": [
+ "rescript-express"
]
}
For now, due to compability issues between commonJS and ES6 module, the bindings expose two express
functions:
express
for ES6expressCjs
to CommonJS
Be careful to pick the right one given your compiler's configuration.
The API closely matches the express one. You can refer to the express docs.
Router
isn't implementedexpress.json
,express.raw
,express.text
,express.urlencoded
,express.static
are all suffixed withMiddleware
to prevent name clashing.accept*
andis
return an option intead of a string/boolean
You can check the interface file to see the exposed APIs.
open Express
let app = express()
app->use(jsonMiddleware())
app->get("/", (_req, res) => {
open Res
let _ = res->status(200)->json({"ok": true})
})
app->post("/ping", (req, res) => {
open Req
let body = req->body
open Res
let _ = switch body["name"]->Js.Nullable.toOption {
| Some(name) => res->status(200)->json({"message": `Hello ${name}`})
| None => res->status(400)->json({"error": `Missing name`})
}
})
Generates the following
var Express = require("express");
var app = Express();
app.use(Express.json());
app.get("/", function (_req, res) {
res.status(200).json({
ok: true,
});
});
app.post("/ping", function (req, res) {
var body = req.body;
var name = body.name;
if (name == null) {
res.status(400).json({
error: "Missing name",
});
} else {
res.status(200).json({
message: "Hello " + name,
});
}
});
app.use(function (err, _req, res, _next) {
console.error(err);
res.status(500).end("An error occured");
});
app.listen(8081, function (param) {
console.log("Listening on http://localhost:" + String(8081));
});