Giter Site home page Giter Site logo

rescript-express's Introduction

rescript-express

(nearly) zero-cost bindings to express

Installation

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"
   ]
 }

Module system

For now, due to compability issues between commonJS and ES6 module, the bindings expose two express functions:

  • express for ES6
  • expressCjs to CommonJS

Be careful to pick the right one given your compiler's configuration.

API

The API closely matches the express one. You can refer to the express docs.

Notable differences

  • Router isn't implemented
  • express.json, express.raw, express.text, express.urlencoded, express.static are all suffixed with Middleware to prevent name clashing.
  • accept* and is return an option intead of a string/boolean
  • req.get is called getRequestHeader and res.get is called getResponseHeader

You can check the interface file to see the exposed APIs.

Example

open Express

let app = express()

app->use(jsonMiddleware())

app->get("/", (_req, res) => {
  let _ = res->status(200)->json({"ok": true})
})

app->post("/ping", (req, res) => {
  let body = req->body
  let _ = switch body["name"]->Js.Nullable.toOption {
  | Some(name) => res->status(200)->json({"message": `Hello ${name}`})
  | None => res->status(400)->json({"error": `Missing name`})
  }
})

app->useWithError((err, _req, res, _next) => {
  Js.Console.error(err)
  let _ = res->status(500)->endWithData("An error occured")
})

let port = 8081
let _ = app->listenWithCallback(port, _ => {
  Js.Console.log(`Listening on http://localhost:${port->Belt.Int.toString}`)
})

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));
});

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.