https://github.com/mransan/bs-cookie-parser
cookie-parser binding in ReasonML
https://github.com/mransan/bs-cookie-parser
Last synced: 3 months ago
JSON representation
cookie-parser binding in ReasonML
- Host: GitHub
- URL: https://github.com/mransan/bs-cookie-parser
- Owner: mransan
- Created: 2017-06-15T11:26:02.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-06-15T11:34:27.000Z (almost 8 years ago)
- Last Synced: 2025-01-29T04:41:26.694Z (5 months ago)
- Language: OCaml
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# bs-cookie-parser
[cookie-parser](https://github.com/expressjs/cookie-parser) binding in ReasonML# Example
```Javascript
let app = Express.express ();App.use app (CookieParser.make ());
App.listen app port::3000 ;
```# Installation
> TODO
# 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`.