1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-06 02:15:48 +03:00

move from "NodeRedis" to "Redis"

This commit is contained in:
leibale
2021-10-13 13:37:57 -04:00
parent bc1ffbc5db
commit a79b8fae4f
2 changed files with 9 additions and 19 deletions

View File

@@ -1,13 +1,13 @@
<p align="center"> <p align="center">
<a href="https://github.com/noderedis/node-redis"> <a href="https://github.com/redis/node-redis">
<img width="128" src="https://static.invertase.io/assets/node_redis_logo.png" /> <img width="128" src="https://static.invertase.io/assets/node_redis_logo.png" />
</a> </a>
<h2 align="center">Node Redis</h2> <h2 align="center">Node Redis</h2>
</p> </p>
<div align="center"> <div align="center">
<a href="https://coveralls.io/github/NodeRedis/node-redis"> <a href="https://coveralls.io/github/redis/node-redis">
<img src="https://coveralls.io/repos/github/NodeRedis/node-redis/badge.svg" alt="Coverage Status"/> <img src="https://coveralls.io/repos/github/redis/node-redis/badge.svg" alt="Coverage Status"/>
</a> </a>
<a href="https://www.npmjs.com/package/redis/v/next"> <a href="https://www.npmjs.com/package/redis/v/next">
<img src="https://img.shields.io/npm/dm/redis.svg" alt="Downloads"/> <img src="https://img.shields.io/npm/dm/redis.svg" alt="Downloads"/>
@@ -57,7 +57,7 @@ createClient({
}); });
``` ```
You can also use discrete parameters, UNIX sockets, and even TLS to connect. Details can be found in in the [Wiki](https://github.com/NodeRedis/node-redis/wiki/lib.socket#RedisSocketOptions). You can also use discrete parameters, UNIX sockets, and even TLS to connect. Details can be found in in the [Wiki](https://github.com/redis/node-redis/wiki/lib.socket#RedisSocketOptions).
### Redis Commands ### Redis Commands
@@ -279,8 +279,8 @@ If you'd like to contribute, check out the [contributing guide](CONTRIBUTING.md)
Thank you to all the people who already contributed to Node Redis! Thank you to all the people who already contributed to Node Redis!
<a href="https://github.com/NodeRedis/node-redis/graphs/contributors"> <a href="https://github.com/redis/node-redis/graphs/contributors">
<img src="https://contrib.rocks/image?repo=NodeRedis/node-redis"/> <img src="https://contrib.rocks/image?repo=redis/node-redis"/>
</a> </a>
## License ## License

View File

@@ -8,16 +8,6 @@
"pubsub" "pubsub"
], ],
"author": "Matt Ranney <mjr@ranney.com>", "author": "Matt Ranney <mjr@ranney.com>",
"contributors": [
{
"name": "Mike Diarmid (Salakar)",
"url": "https://github.com/salakar"
},
{
"name": "Ruben Bridgewater (BridgeAR)",
"url": "https://github.com/BridgeAR"
}
],
"license": "MIT", "license": "MIT",
"main": "./dist/index.js", "main": "./dist/index.js",
"types": "./dist/index.d.ts", "types": "./dist/index.d.ts",
@@ -57,10 +47,10 @@
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git://github.com/NodeRedis/node-redis.git" "url": "git://github.com/redis/node-redis.git"
}, },
"bugs": { "bugs": {
"url": "https://github.com/NodeRedis/node-redis/issues" "url": "https://github.com/redis/node-redis/issues"
}, },
"homepage": "https://github.com/NodeRedis/node-redis" "homepage": "https://github.com/redis/node-redis"
} }