falkordb 4.6.11 → 4.6.13

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.
Files changed (2) hide show
  1. package/README.md +14 -22
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,50 +1,42 @@
1
- # Node-Redis
1
+ # FalkorDB
2
2
 
3
- [![Tests](https://img.shields.io/github/actions/workflow/status/redis/node-redis/tests.yml?branch=master)](https://github.com/redis/node-redis/actions/workflows/tests.yml)
4
- [![Coverage](https://codecov.io/gh/redis/node-redis/branch/master/graph/badge.svg?token=xcfqHhJC37)](https://codecov.io/gh/redis/node-redis)
5
- [![License](https://img.shields.io/github/license/redis/node-redis.svg)](https://github.com/redis/node-redis/blob/master/LICENSE)
3
+ [![Tests](https://img.shields.io/github/actions/workflow/status/falkordb/node-falkordb/tests.yml?branch=master)](https://github.com/falkordb/node-falkordb/actions/workflows/tests.yml)
4
+ [![Coverage](https://codecov.io/gh/falkordb/node-falkordb/branch/master/graph/badge.svg?token=xcfqHhJC37)](https://codecov.io/gh/falkordb/node-falkordb)
5
+ [![License](https://img.shields.io/github/license/falkordb/node-falkordb.svg)](https://github.com/falkordb/node-falkordb/blob/master/LICENSE)
6
6
 
7
- [![Discord](https://img.shields.io/discord/697882427875393627.svg?style=social&logo=discord)](https://discord.gg/redis)
8
- [![Twitch](https://img.shields.io/twitch/status/redisinc?style=social)](https://www.twitch.tv/redisinc)
9
- [![YouTube](https://img.shields.io/youtube/channel/views/UCD78lHSwYqMlyetR0_P4Vig?style=social)](https://www.youtube.com/redisinc)
10
- [![Twitter](https://img.shields.io/twitter/follow/redisinc?style=social)](https://twitter.com/redisinc)
7
+ [![Discord](https://img.shields.io/discord/697882427875393627.svg?style=social&logo=discord)](https://discord.com/invite/99y2Ubh6tg)
8
+ [![Twitter](https://img.shields.io/twitter/follow/falkordb?style=social)](https://twitter.com/falkordb)
11
9
 
12
- node-falkordb is a modern, high performance [FalkorDB](https://www.falkordb.com) client for Node.js.
10
+ falkordb is a modern, high performance [FalkorDB](https://www.falkordb.com) client for Node.js.
13
11
 
14
12
  ## Packages
15
13
 
16
14
  | Name | Description |
17
15
  |----------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
18
- | [falkordb](./) | [![Downloads](https://img.shields.io/npm/dm/falkordb.svg)](https://www.npmjs.com/package/falkordb) [![Version](https://img.shields.io/npm/v/refalkordbis.svg)](https://www.npmjs.com/package/redis) |
16
+ | [falkordb](./) | [![Downloads](https://img.shields.io/npm/dm/falkordb.svg)](https://www.npmjs.com/package/falkordb) [![Version](https://img.shields.io/npm/v/refalkordbis.svg)](https://www.npmjs.com/package/falkordb) |
19
17
  | [@falkordb/client](./packages/client) | [![Downloads](https://img.shields.io/npm/dm/@falkordb/client.svg)](https://www.npmjs.com/package/@falkordb/client) [![Version](https://img.shields.io/npm/v/@falkordb/client.svg)](https://www.npmjs.com/package/@falkordb/client) [![Docs](https://img.shields.io/badge/-documentation-dc382c)](https://redis.js.org/documentation/client/) |
20
- | [@falkordb/graph](./packages/graph) | [![Downloads](https://img.shields.io/npm/dm/@falkordb/graph.svg)](https://www.npmjs.com/package/@falkordb/graph) [![Version](https://img.shields.io/npm/v/@falkordb/graph.svg)](https://www.npmjs.com/package/@falkordb/graph) [![Docs](https://img.shields.io/badge/-documentation-dc382c)](https://redis.js.org/documentation/graph/) [Redis Graph](https://oss.redis.com/redisgraph/) commands |
21
-
22
- > :warning: In version 4.1.0 we moved our subpackages from `@node-redis` to `@falkordb`. If you're just using `npm install redis`, you don't need to do anything—it'll upgrade automatically. If you're using the subpackages directly, you'll need to point to the new scope (e.g. `@falkordb/client` instead of `@node-falkordb/client`).
18
+ | [@falkordb/graph](./packages/graph) | [![Downloads](https://img.shields.io/npm/dm/@falkordb/graph.svg)](https://www.npmjs.com/package/@falkordb/graph) [![Version](https://img.shields.io/npm/v/@falkordb/graph.svg)](https://www.npmjs.com/package/@falkordb/graph) [![Docs](https://img.shields.io/badge/-documentation-dc382c)](https://redis.js.org/documentation/graph/) [FalkorDB](https://www.falkordb.com) commands |
23
19
 
24
20
  ## Installation
25
21
 
26
- Start a redis via docker:
22
+ Start a falkordb via docker:
27
23
 
28
24
  ``` bash
29
- docker run -p 6379:6379 -it redis/redis-stack-server:latest
25
+ docker run -p 6379:6379 -it falkordb/falkordb:latest
30
26
  ```
31
27
 
32
- To install node-redis, simply:
28
+ To install node falkordb, simply:
33
29
 
34
30
  ```bash
35
- npm install redis
31
+ npm install falkordb
36
32
  ```
37
33
 
38
- > :warning: The new interface is clean and cool, but if you have an existing codebase, you'll want to read the [migration guide](./docs/v3-to-v4.md).
39
-
40
- Looking for a high-level library to handle object mapping? See [redis-om-node](https://github.com/redis/redis-om-node)!
41
-
42
34
  ## Usage
43
35
 
44
36
  ### Basic Example
45
37
 
46
38
  ```typescript
47
- import { createClient } from 'redis';
39
+ import { createClient } from 'falkordb';
48
40
 
49
41
  const client = await createClient()
50
42
  .on('error', err => console.log('Redis Client Error', err))
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "falkordb",
3
3
  "description": "A modern, high performance FalkorDB client",
4
- "version": "4.6.11",
4
+ "version": "4.6.13",
5
5
  "license": "MIT",
6
6
  "main": "./dist/index.js",
7
7
  "types": "./dist/index.d.ts",