Socket
Socket
Sign inDemoInstall

redis

Package Overview
Dependencies
Maintainers
3
Versions
155
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

redis - npm Package Compare versions

Comparing version 4.0.2 to 4.0.3

21

dist/index.d.ts

@@ -5,2 +5,3 @@ import { RedisClientOptions, RedisClientType, RedisClusterOptions, RedisClusterType } from '@node-redis/client';

export * from '@node-redis/bloom';
export * from '@node-redis/graph';
export * from '@node-redis/json';

@@ -10,2 +11,22 @@ export * from '@node-redis/search';

declare const modules: {
graph: {
CONFIG_GET: typeof import("@node-redis/graph/dist/commands/CONFIG_GET");
configGet: typeof import("@node-redis/graph/dist/commands/CONFIG_GET");
CONFIG_SET: typeof import("@node-redis/graph/dist/commands/CONFIG_SET");
configSet: typeof import("@node-redis/graph/dist/commands/CONFIG_SET");
DELETE: typeof import("@node-redis/graph/dist/commands/DELETE");
delete: typeof import("@node-redis/graph/dist/commands/DELETE");
EXPLAIN: typeof import("@node-redis/graph/dist/commands/EXPLAIN");
explain: typeof import("@node-redis/graph/dist/commands/EXPLAIN");
LIST: typeof import("@node-redis/graph/dist/commands/LIST");
list: typeof import("@node-redis/graph/dist/commands/LIST");
PROFILE: typeof import("@node-redis/graph/dist/commands/PROFILE");
profile: typeof import("@node-redis/graph/dist/commands/PROFILE");
QUERY_RO: typeof import("@node-redis/graph/dist/commands/QUERY_RO");
queryRo: typeof import("@node-redis/graph/dist/commands/QUERY_RO");
QUERY: typeof import("@node-redis/graph/dist/commands/QUERY");
query: typeof import("@node-redis/graph/dist/commands/QUERY");
SLOWLOG: typeof import("@node-redis/graph/dist/commands/SLOWLOG");
slowLog: typeof import("@node-redis/graph/dist/commands/SLOWLOG");
};
json: {

@@ -12,0 +33,0 @@ ARRAPPEND: typeof import("@node-redis/json/dist/commands/ARRAPPEND");

3

dist/index.js

@@ -16,2 +16,3 @@ "use strict";

const bloom_1 = require("@node-redis/bloom");
const graph_1 = require("@node-redis/graph");
const json_1 = require("@node-redis/json");

@@ -22,2 +23,3 @@ const search_1 = require("@node-redis/search");

__exportStar(require("@node-redis/bloom"), exports);
__exportStar(require("@node-redis/graph"), exports);
__exportStar(require("@node-redis/json"), exports);

@@ -28,2 +30,3 @@ __exportStar(require("@node-redis/search"), exports);

...bloom_1.default,
graph: graph_1.default,
json: json_1.default,

@@ -30,0 +33,0 @@ ft: search_1.default,

19

package.json
{
"name": "redis",
"description": "A modern, high performance Redis client",
"version": "4.0.2",
"version": "4.0.3",
"license": "MIT",

@@ -26,7 +26,8 @@ "main": "./dist/index.js",

"dependencies": {
"@node-redis/bloom": "^1.0.0",
"@node-redis/client": "^1.0.2",
"@node-redis/json": "^1.0.2",
"@node-redis/search": "^1.0.2",
"@node-redis/time-series": "^1.0.1"
"@node-redis/bloom": "1.0.1",
"@node-redis/client": "1.0.3",
"@node-redis/graph": "1.0.0",
"@node-redis/json": "1.0.2",
"@node-redis/search": "1.0.2",
"@node-redis/time-series": "1.0.1"
},

@@ -46,7 +47,3 @@ "devDependencies": {

},
"homepage": "https://github.com/redis/node-redis",
"engines": {
"npm": ">=7",
"typescript": ">=4"
}
"homepage": "https://github.com/redis/node-redis"
}

@@ -11,2 +11,15 @@ # Node-Redis

## Packages
| Name | Description |
|---------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| [redis](./) | [![Downloads](https://img.shields.io/npm/dm/redis.svg)](https://www.npmjs.com/package/redis) [![Version](https://img.shields.io/npm/v/redis.svg)](https://www.npmjs.com/package/redis) |
| [@node-redis/client](./packages/client) | [![Downloads](https://img.shields.io/npm/dm/@node-redis/client.svg)](https://www.npmjs.com/package/@node-redis/client) [![Version](https://img.shields.io/npm/v/@node-redis/client.svg)](https://www.npmjs.com/package/@node-redis/client) [![Docs](https://img.shields.io/badge/-documentation-dc382c)](https://redis.js.org/documentation/client/) |
| [@node-redis/bloom](./packages/bloom) | [![Downloads](https://img.shields.io/npm/dm/@node-redis/bloom.svg)](https://www.npmjs.com/package/@node-redis/bloom) [![Version](https://img.shields.io/npm/v/@node-redis/bloom.svg)](https://www.npmjs.com/package/@node-redis/bloom) [![Docs](https://img.shields.io/badge/-documentation-dc382c)](https://redis.js.org/documentation/bloom/) [Redis Bloom](https://oss.redis.com/redisbloom/) commands |
| [@node-redis/graph](./packages/graph) | [![Downloads](https://img.shields.io/npm/dm/@node-redis/graph.svg)](https://www.npmjs.com/package/@node-redis/graph) [![Version](https://img.shields.io/npm/v/@node-redis/graph.svg)](https://www.npmjs.com/package/@node-redis/graph) [![Docs](https://img.shields.io/badge/-documentation-dc382c)](https://redis.js.org/documentation/graph/) [Redis Graph](https://oss.redis.com/redisgraph/) commands |
| [@node-redis/json](./packages/json) | [![Downloads](https://img.shields.io/npm/dm/@node-redis/json.svg)](https://www.npmjs.com/package/@node-redis/json) [![Version](https://img.shields.io/npm/v/@node-redis/json.svg)](https://www.npmjs.com/package/@node-redis/json) [![Docs](https://img.shields.io/badge/-documentation-dc382c)](https://redis.js.org/documentation/json/) [Redis JSON](https://oss.redis.com/redisjson/) commands |
| [@node-redis/search](./packages/search) | [![Downloads](https://img.shields.io/npm/dm/@node-redis/search.svg)](https://www.npmjs.com/package/@node-redis/search) [![Version](https://img.shields.io/npm/v/@node-redis/search.svg)](https://www.npmjs.com/package/@node-redis/search) [![Docs](https://img.shields.io/badge/-documentation-dc382c)](https://redis.js.org/documentation/search/) [Redis Search](https://oss.redis.com/redisearch/) commands |
| [@node-redis/time-series](./packages/time-series) | [![Downloads](https://img.shields.io/npm/dm/@node-redis/time-series.svg)](https://www.npmjs.com/package/@node-redis/time-series) [![Version](https://img.shields.io/npm/v/@node-redis/time-series.svg)](https://www.npmjs.com/package/@node-redis/time-series) [![Docs](https://img.shields.io/badge/-documentation-dc382c)](https://redis.js.org/documentation/time-series/) [Redis Time-Series](https://oss.redis.com/redistimeseries/) commands |
## Installation

@@ -323,13 +336,2 @@

## Packages
| Name | Description |
|---------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| [redis](./) | [![Downloads](https://img.shields.io/npm/dm/redis.svg)](https://www.npmjs.com/package/redis) [![Version](https://img.shields.io/npm/v/redis.svg)](https://www.npmjs.com/package/redis) |
| [@node-redis/client](./packages/client) | [![Downloads](https://img.shields.io/npm/dm/@node-redis/client.svg)](https://www.npmjs.com/package/@node-redis/client) [![Version](https://img.shields.io/npm/v/@node-redis/client.svg)](https://www.npmjs.com/package/@node-redis/client) [![Docs](https://img.shields.io/badge/-documentation-dc382c)](https://redis.js.org/documentation/client/) |
| [@node-redis/bloom](./packages/bloom) | [![Downloads](https://img.shields.io/npm/dm/@node-redis/bloom.svg)](https://www.npmjs.com/package/@node-redis/bloom) [![Version](https://img.shields.io/npm/v/@node-redis/bloom.svg)](https://www.npmjs.com/package/@node-redis/bloom) [![Docs](https://img.shields.io/badge/-documentation-dc382c)](https://redis.js.org/documentation/bloom/) [Redis Bloom](https://oss.redis.com/redisbloom/) commands |
| [@node-redis/json](./packages/json) | [![Downloads](https://img.shields.io/npm/dm/@node-redis/json.svg)](https://www.npmjs.com/package/@node-redis/json) [![Version](https://img.shields.io/npm/v/@node-redis/json.svg)](https://www.npmjs.com/package/@node-redis/json) [![Docs](https://img.shields.io/badge/-documentation-dc382c)](https://redis.js.org/documentation/json/) [Redis JSON](https://oss.redis.com/redisjson/) commands |
| [@node-redis/search](./packages/search) | [![Downloads](https://img.shields.io/npm/dm/@node-redis/search.svg)](https://www.npmjs.com/package/@node-redis/search) [![Version](https://img.shields.io/npm/v/@node-redis/search.svg)](https://www.npmjs.com/package/@node-redis/search) [![Docs](https://img.shields.io/badge/-documentation-dc382c)](https://redis.js.org/documentation/search/) [Redis Search](https://oss.redis.com/redisearch/) commands |
| [@node-redis/time-series](./packages/time-series) | [![Downloads](https://img.shields.io/npm/dm/@node-redis/time-series.svg)](https://www.npmjs.com/package/@node-redis/time-series) [![Version](https://img.shields.io/npm/v/@node-redis/time-series.svg)](https://www.npmjs.com/package/@node-redis/time-series) [![Docs](https://img.shields.io/badge/-documentation-dc382c)](https://redis.js.org/documentation/time-series/) [Redis Time-Series](https://oss.redis.com/redistimeseries/) commands |
## Contributing

@@ -336,0 +338,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc