@skalfa/skalfa-redis 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/bun.lock ADDED
@@ -0,0 +1,40 @@
1
+ {
2
+ "lockfileVersion": 1,
3
+ "workspaces": {
4
+ "": {
5
+ "name": "@skalfa/skalfa-redis",
6
+ "dependencies": {
7
+ "ioredis": "^5.4.1",
8
+ },
9
+ "devDependencies": {
10
+ "@types/node": "^26.0.0",
11
+ "typescript": "^6.0.3",
12
+ },
13
+ },
14
+ },
15
+ "packages": {
16
+ "@ioredis/commands": ["@ioredis/commands@1.10.0", "", {}, "sha512-UmeW7z4LfctwoQ5wkhVzgq8tXkreED2xZGpX+Bg+zA+WJFZCT6c062AfCK/Dfk81xZnnwdhJCUMkitihRaoC2Q=="],
17
+
18
+ "@types/node": ["@types/node@26.0.0", "", { "dependencies": { "undici-types": "~8.3.0" } }, "sha512-vf2YFi1iY9lHGwNJMs01biZFbKJkrZR1T6/MlzjhJLPdntOHLhTrDSnSVcdtvjihi4VQNlrFRIxLsDBlQpAipA=="],
19
+
20
+ "cluster-key-slot": ["cluster-key-slot@1.1.1", "", {}, "sha512-rwHwUfXL40Chm1r08yrhU3qpUvdVlgkKNeyeGPOxnW8/SyVDvgRaed/Uz54AqWNaTCAThlj6QAs3TZcKI0xDEw=="],
21
+
22
+ "debug": ["debug@4.4.3", "", { "dependencies": { "ms": "^2.1.3" } }, "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA=="],
23
+
24
+ "denque": ["denque@2.1.0", "", {}, "sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw=="],
25
+
26
+ "ioredis": ["ioredis@5.11.1", "", { "dependencies": { "@ioredis/commands": "1.10.0", "cluster-key-slot": "1.1.1", "debug": "4.4.3", "denque": "2.1.0", "redis-errors": "1.2.0", "redis-parser": "3.0.0", "standard-as-callback": "2.1.0" } }, "sha512-ehuGcf94bQXhfagULNXrJdfnWO38v070jxSx/qE87Kjzmu2fU7ro5EFAb+OPituLqgfyuQaym5DlrNydW2sJ9A=="],
27
+
28
+ "ms": ["ms@2.1.3", "", {}, "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="],
29
+
30
+ "redis-errors": ["redis-errors@1.2.0", "", {}, "sha512-1qny3OExCf0UvUV/5wpYKf2YwPcOqXzkwKKSmKHiE6ZMQs5heeE/c8eXK+PNllPvmjgAbfnsbpkGZWy8cBpn9w=="],
31
+
32
+ "redis-parser": ["redis-parser@3.0.0", "", { "dependencies": { "redis-errors": "^1.0.0" } }, "sha512-DJnGAeenTdpMEH6uAJRK/uiyEIH9WVsUmoLwzudwGJUwZPp80PDBWPHXSAGNPwNvIXAbe7MSUB1zQFugFml66A=="],
33
+
34
+ "standard-as-callback": ["standard-as-callback@2.1.0", "", {}, "sha512-qoRRSyROncaz1z0mvYqIE4lCd9p2R90i6GxW3uZv5ucSu8tU7B5HXUP1gG8pVZsYNVaXjk8ClXHPttLyxAL48A=="],
35
+
36
+ "typescript": ["typescript@6.0.3", "", { "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" } }, "sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw=="],
37
+
38
+ "undici-types": ["undici-types@8.3.0", "", {}, "sha512-j375ScV60dom+YkPFIfTLcOiPxkN/buHz5GobjLhixFuANaNs3C9l4GmrWqejgXWJ7BbJcFYpTEUkS1Ge8bpZQ=="],
39
+ }
40
+ }
@@ -0,0 +1,2 @@
1
+ import Redis from "ioredis";
2
+ export declare const redis: Redis;
package/dist/index.js ADDED
@@ -0,0 +1,11 @@
1
+ import Redis from "ioredis";
2
+ // =============================>
3
+ // ## Cache: Init redis connection
4
+ // =============================>
5
+ export const redis = new Redis({
6
+ host: process.env.REDIS_HOST || "127.0.0.1",
7
+ port: Number(process.env.REDIS_PORT) || 6379,
8
+ password: process.env.REDIS_PASSWORD || undefined,
9
+ db: Number(process.env.REDIS_DB) || 0,
10
+ });
11
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,SAAS,CAAA;AAE3B,iCAAiC;AACjC,kCAAkC;AAClC,iCAAiC;AACjC,MAAM,CAAC,MAAM,KAAK,GAAG,IAAI,KAAK,CAAC;IAC7B,IAAI,EAAQ,OAAO,CAAC,GAAG,CAAC,UAAU,IAAa,WAAW;IAC1D,IAAI,EAAQ,MAAM,CAAC,OAAO,CAAC,GAAG,CAAC,UAAU,CAAC,IAAK,IAAI;IACnD,QAAQ,EAAI,OAAO,CAAC,GAAG,CAAC,cAAc,IAAS,SAAS;IACxD,EAAE,EAAU,MAAM,CAAC,OAAO,CAAC,GAAG,CAAC,QAAQ,CAAC,IAAO,CAAC;CACjD,CAAC,CAAA"}
package/package.json ADDED
@@ -0,0 +1,24 @@
1
+ {
2
+ "name": "@skalfa/skalfa-redis",
3
+ "version": "1.0.0",
4
+ "description": "Redis utility package for Skalfa API framework using ioredis.",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "scripts": {
8
+ "build": "tsc --ignoreDeprecations 6.0"
9
+ },
10
+ "keywords": [
11
+ "aluna",
12
+ "redis",
13
+ "skalfa"
14
+ ],
15
+ "author": "",
16
+ "license": "UNLICENSED",
17
+ "dependencies": {
18
+ "ioredis": "^5.4.1"
19
+ },
20
+ "devDependencies": {
21
+ "@types/node": "^26.0.0",
22
+ "typescript": "^6.0.3"
23
+ }
24
+ }
package/src/index.ts ADDED
@@ -0,0 +1,11 @@
1
+ import Redis from "ioredis"
2
+
3
+ // =============================>
4
+ // ## Cache: Init redis connection
5
+ // =============================>
6
+ export const redis = new Redis({
7
+ host : process.env.REDIS_HOST || "127.0.0.1",
8
+ port : Number(process.env.REDIS_PORT) || 6379,
9
+ password : process.env.REDIS_PASSWORD || undefined,
10
+ db : Number(process.env.REDIS_DB) || 0,
11
+ })
package/tsconfig.json ADDED
@@ -0,0 +1,18 @@
1
+ {
2
+ "compilerOptions": {
3
+ "ignoreDeprecations": "5.0",
4
+ "target": "ES2021",
5
+ "module": "ES2022",
6
+ "moduleResolution": "node",
7
+ "declaration": true,
8
+ "sourceMap": true,
9
+ "outDir": "./dist",
10
+ "rootDir": "./src",
11
+ "strict": true,
12
+ "esModuleInterop": true,
13
+ "skipLibCheck": true,
14
+ "forceConsistentCasingInFileNames": true,
15
+ "baseUrl": "."
16
+ },
17
+ "include": ["src/**/*"]
18
+ }