-
-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Updating for v5 (#338) * ci: add node 21 to test matrix and remove node 14 and 16 * package.json update for v5 * merge main to next (#348) * Update README.md to reflect #307 (#342) * Redis should work with ban (#336) * Redis should work with ban * fix ttl * simplify * format * remove warning * move property * add test * fix test * fix test * fix test * still fix the same test * make it non-breaking * make it non-breaking * make it non-breaking * make it non-breaking * perf: add ban back * Bumped v8.1.0 Signed-off-by: Matteo Collina <hello@matteocollina.com> * Bumped v9.0.0 Signed-off-by: Matteo Collina <hello@matteocollina.com> * Fix in-memory cache bug when there is only one entry (#345) * Bumped v9.0.1 --------- Signed-off-by: Matteo Collina <hello@matteocollina.com> Co-authored-by: Trevor Lund <89029310+tlund101@users.noreply.github.com> Co-authored-by: Matteo Collina <hello@matteocollina.com> Co-authored-by: Igor Savin <iselwin@gmail.com> * Revert "merge main to next (#348)" This reverts commit 5446122. * revert workflow update as its causing issues (#350) * revert: handle ban in store (#347) * remove ban handling from store * don't use negation * add undef * don't pass ban to promis * fix accidental explicit checks * fix accidental line change * inline ban * Workflow v4 (#354) * refactor: make RedisStore default key a default parameter (#356) * refactor redis parameters and throw if no instance was provided * revert error * Add function support for timeWindow (#357) * feat: dynamic time window support * fix: proper usage of timeWindowString --------- Co-authored-by: lukas <git@lukaselsner.de> * update docs (#360) * fix: remove unnecessary parameter timeWindow (#363) * refactor: consistent option handling (#365) * small refactor in option handling * simplify * simplify * perf: pregenerate `timeWindow` string when possible and use `noop` as default function (#364) * pregenerate timeWindowString if possible * simplify * simplify * noop * simplify * simple-example * rename * update for v5 (#370) * update for v5 * update for v5 * update for v5 * update for v5 * update for v5 * update for v5 * update for v5 * update for v5 * update for v5 * update for v5 * update for v5 * update for v5 * update for v5 * update for v5 * update fastify deps --------- Signed-off-by: Matteo Collina <hello@matteocollina.com> Co-authored-by: Eliphaz Bouye <53824344+Eliphaz-Bouye@users.noreply.github.com> Co-authored-by: Gürgün Dayıoğlu <gurgun.dayioglu@icloud.com> Co-authored-by: Trevor Lund <89029310+tlund101@users.noreply.github.com> Co-authored-by: Matteo Collina <hello@matteocollina.com> Co-authored-by: Igor Savin <iselwin@gmail.com> Co-authored-by: lukas <mindrunner@users.noreply.github.com> Co-authored-by: lukas <git@lukaselsner.de> Co-authored-by: Gürgün Dayıoğlu <hey@gurgun.day>
- Loading branch information
1 parent
595a627
commit ad026a8
Showing
12 changed files
with
278 additions
and
176 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,4 @@ | ||
jobs: 1 | ||
|
||
branches: 96 | ||
functions: 100 | ||
lines: 100 | ||
statements: 98 | ||
|
||
disable-coverage: true | ||
files: | ||
- test/**/*.test.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import fastify from 'fastify' | ||
import fastifyRateLimit from '../index.js' | ||
|
||
const server = fastify() | ||
|
||
await server.register(fastifyRateLimit, { | ||
global: true, | ||
max: 10000, | ||
timeWindow: '1 minute' | ||
}) | ||
|
||
server.get('/', (request, reply) => { | ||
reply.send('Hello, world!') | ||
}) | ||
|
||
const start = async () => { | ||
try { | ||
await server.listen({ port: 3000 }) | ||
console.log('Server is running on port 3000') | ||
} catch (error) { | ||
console.error('Error starting server:', error) | ||
} | ||
} | ||
|
||
start() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.