implemented timeoutManager, a more efficient solution for managing timeouts in RAM memory. this resolves the problem of lingering timeouts in the server, providing faster removal of old timeouts and improving overall performance.
23 lines
482 B
JSON
23 lines
482 B
JSON
{
|
|
"dependencies": {
|
|
"body-parser": "^1.19.0",
|
|
"connect-mongo": "^4.4.0",
|
|
"connect-mongodb-session": "^3.1.1",
|
|
"cookie-parser": "^1.4.5",
|
|
"cors": "^2.8.5",
|
|
"express": "^4.17.1",
|
|
"express-session": "^1.17.1",
|
|
"mongoose": "^5.12.0",
|
|
"sinon": "^17.0.1",
|
|
"socket.io": "^4.5.1"
|
|
},
|
|
"devDependencies": {
|
|
"chai": "^4.3.10",
|
|
"mocha": "^10.2.0",
|
|
"socket.io-client": "^4.7.2"
|
|
},
|
|
"scripts": {
|
|
"test": "mocha tests/**/*.js"
|
|
}
|
|
}
|