Express bindings in Reason
npm install bs-expressExpress bindings for BuckleScript in Reason.
1. Install bs-express using npm:
```
npm install --save bs-express
2. Add bs-express as a dependency to your bsconfig.json:
`json`
{
"name": "your-project",
"bs-dependencies": ["bs-express"]
}
---
Right now the library is somewhat underdocumented, so please view the interface file Express.rei or the example folder to see library usage.
---
If you'd like to contribute, you can follow the instructions below to get things working locally.
1. After cloning the repo, install the dependencies
`shell`
npm install
2. Build and start the example server:
`shell`
npm start
To run tests, run the command:
`shell``
npm test