hapi-rate-limiter
hapi-rate-limiter copied to clipboard
It happens when the redis server is restarted for example.
Sometimes you do not want to returns the rate limit headers for "security" reasons. I added an option `noHeaders` to disable those.
PUT requests where not in the list of methods allowed to be rate limited. I added it to the list.
It is useful to have more context on the `overLimitError` mainly for logging purposes. That is why I propose to add the `request` argument. Also, I want to implement a...
I'm trying to define a dynamic rate limit based upon the user's role. To achieve this, the user details has to be fetched from db (redis) and then evaluated via...
Hello, is it possible to use multiple rate limiter like limit 10 requests in a minute and 1000 each day ? Can I just register twice this plugin with different...
It'd be useful to have the option to whitelist certain API keys so that requests made with those keys don't get rate limited. For example, if I have some services...