This file contains hidden or 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
const requestLimit = new Map(); | |
const requestLimitWindow = []; | |
const CLEANUP_INTERVAL = 100; | |
const TEST_RATE = 5; | |
const IP_LIMIT = 10; | |
const getLimitKey = () => { | |
const now = new Date(); | |
return `${now.getHours()}:${now.getMinutes()}:${now.getSeconds().toString().padStart(2, '0')}`; |