4
40%
MIT
neglectedcookie-parser binding in ReasonML

bs-cookie-parser

cookie-parser binding in ReasonML

Example

  • RE
  • ML
let app = Express.express();

App.use(app, CookieParser.make());

App.listen(app, ~port=3000);
let app = Express.express ()
let _ = App.use app (CookieParser.make ())
let _ = App.listen app ~port:3000

Installation

npm install --save bs-cookie-parser bs-express Add bs-cookier-parser and bs-express to bsconfig.json. For example:

{
  ...
  "bs-dependencies": [
    "bs-express",
    "bs-cookie-parser"
  ]
}

Testing in development

In one terminal:

npm run start

In second terminal:

cd tests && ./test.sh

Testing relies on querying a the example/Index.re server and making sure the output matches the tests/reference.data.