If you wanted to use any middleware like https://helmetjs.github.io/ where in plain js you can do: app.use(helmet()).
Assuming that I have binded the helmet() part to ReasonML already would you do Routable.use(helmet()) to recreate the line app.use(helmet()) in plain js?
If you wanted to use any middleware like https://helmetjs.github.io/ where in plain js you can do:
app.use(helmet())
. Assuming that I have binded the helmet() part to ReasonML already would you doRoutable.use(helmet())
to recreate the lineapp.use(helmet())
in plain js?