Gathering detailed insights and metrics for @types/koa2-session-redis
Gathering detailed insights and metrics for @types/koa2-session-redis
Gathering detailed insights and metrics for @types/koa2-session-redis
Gathering detailed insights and metrics for @types/koa2-session-redis
The repository for high quality TypeScript type definitions.
npm install @types/koa2-session-redis
Typescript
Module System
TypeScript (99.84%)
JavaScript (0.15%)
Shell (0.01%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
NOASSERTION License
50,041 Stars
89,745 Commits
30,435 Forks
640 Watchers
6 Branches
9,957 Contributors
Updated on Jul 15, 2025
Latest Version
0.0.6
Package Id
@types/koa2-session-redis@0.0.6
Unpacked Size
4.24 kB
Size
1.83 kB
File Count
5
Published on
Nov 07, 2023
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
2
npm install --save @types/koa2-session-redis
This package contains type definitions for koa2-session-redis (https://github.com/lonord/koa2-session-redis).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/koa2-session-redis.
1import * as session from "koa-session"; 2import * as Redis from "redis"; 3 4export = RedisStore; 5 6declare class RedisStore implements session.stores { 7 constructor(config?: Redis.ClientOpts); 8 9 /** 10 * get session object by key 11 */ 12 get(key: string): any; 13 14 /** 15 * set session object for key, with a maxAge (in ms) 16 */ 17 set( 18 key: string, 19 sess: Partial<session.Session> & { _expire?: number | undefined; _maxAge?: number | undefined }, 20 maxAge: session.opts["maxAge"], 21 ): any; 22 23 /** 24 * destroy session for key 25 */ 26 destroy(key: string): any; 27 28 /** 29 * sends the quit command to the redis server and ends cleanly right after all running commands were properly handled 30 */ 31 quit(): void; 32} 33
These definitions were written by Dima Mukhin.
No vulnerabilities found.
Reason
30 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 10
Reason
security policy file detected
Details
Reason
no dangerous workflow patterns detected
Reason
0 existing vulnerabilities detected
Reason
no binaries found in the repo
Reason
Found 27/30 approved changesets -- score normalized to 9
Reason
license file detected
Details
Reason
dependency not pinned by hash detected -- score normalized to 8
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
project is not fuzzed
Details
Score
Last Scanned on 2025-07-14
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More