Skip to content

Commit 9c17550

Browse files
authored
docs(README): migrate repo links (#1770)
Closes #1769
1 parent ea8a006 commit 9c17550

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
[![ioredis](https://cdn.jsdelivr.net/gh/luin/ioredis@b5e8c74/logo.svg)](https://github.com/luin/ioredis)
1+
[![ioredis](https://cdn.jsdelivr.net/gh/redis/ioredis@b5e8c74/logo.svg)](https://github.com/redis/ioredis)
22

3-
[![Build Status](https://github.com/luin/ioredis/actions/workflows/release.yml/badge.svg?branch=main)](https://github.com/luin/ioredis/actions/workflows/release.yml?query=branch%3Amain)
3+
[![Build Status](https://github.com/redis/ioredis/actions/workflows/release.yml/badge.svg?branch=main)](https://github.com/redis/ioredis/actions/workflows/release.yml?query=branch%3Amain)
44
[![Coverage Status](https://coveralls.io/repos/github/luin/ioredis/badge.svg?branch=main)](https://coveralls.io/github/luin/ioredis?branch=main)
55
[![Join the chat at https://gitter.im/luin/ioredis](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/luin/ioredis?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
66
[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)
@@ -20,9 +20,9 @@ used in the world's biggest online commerce company [Alibaba](http://www.alibaba
2020
2. Delightful API 😄. It works with Node callbacks and Native promises.
2121
3. Transformation of command arguments and replies.
2222
4. Transparent key prefixing.
23-
5. Abstraction for Lua scripting, allowing you to [define custom commands](https://github.com/luin/ioredis#lua-scripting).
24-
6. Supports [binary data](https://github.com/luin/ioredis#handle-binary-data).
25-
7. Supports [TLS](https://github.com/luin/ioredis#tls-options) 🔒.
23+
5. Abstraction for Lua scripting, allowing you to [define custom commands](https://github.com/redis/ioredis#lua-scripting).
24+
6. Supports [binary data](https://github.com/redis/ioredis#handle-binary-data).
25+
7. Supports [TLS](https://github.com/redis/ioredis#tls-options) 🔒.
2626
8. Supports offline queue and ready checking.
2727
9. Supports ES6 types, such as `Map` and `Set`.
2828
10. Supports GEO commands 📍.
@@ -44,13 +44,13 @@ used in the world's biggest online commerce company [Alibaba](http://www.alibaba
4444

4545
Refer to [CHANGELOG.md](CHANGELOG.md) for features and bug fixes introduced in v5.
4646

47-
🚀 [Upgrading from v4 to v5](https://github.com/luin/ioredis/wiki/Upgrading-from-v4-to-v5)
47+
🚀 [Upgrading from v4 to v5](https://github.com/redis/ioredis/wiki/Upgrading-from-v4-to-v5)
4848

4949
# Links
5050

51-
- [API Documentation](https://luin.github.io/ioredis/) ([Redis](https://luin.github.io/ioredis/classes/Redis.html), [Cluster](https://luin.github.io/ioredis/classes/Cluster.html))
51+
- [API Documentation](https://redis.github.io/ioredis/) ([Redis](https://redis.github.io/ioredis/classes/Redis.html), [Cluster](https://redis.github.io/ioredis/classes/Cluster.html))
5252
- [Changelog](CHANGELOG.md)
53-
- [Migrating from node_redis](https://github.com/luin/ioredis/wiki/Migrating-from-node_redis)
53+
- [Migrating from node_redis](https://github.com/redis/ioredis/wiki/Migrating-from-node_redis)
5454

5555
<hr>
5656

@@ -156,7 +156,7 @@ See the `examples/` folder for more examples. For example:
156156
- [Streams](examples/stream.js)
157157
- [Redis Modules](examples/module.js) e.g. RedisJSON
158158

159-
All Redis commands are supported. See [the documentation](https://luin.github.io/ioredis/classes/Redis.html) for details.
159+
All Redis commands are supported. See [the documentation](https://redis.github.io/ioredis/classes/Redis.html) for details.
160160

161161
## Connect to Redis
162162

@@ -188,7 +188,7 @@ new Redis("redis://:[email protected]:6380/4");
188188
new Redis("redis://username:[email protected]:6380/4");
189189
```
190190

191-
See [API Documentation](https://luin.github.io/ioredis/index.html#RedisOptions) for all available options.
191+
See [API Documentation](https://redis.github.io/ioredis/index.html#RedisOptions) for all available options.
192192

193193
## Pub/Sub
194194

@@ -569,8 +569,8 @@ This feature allows you to specify a string that will automatically be prepended
569569
to all the keys in a command, which makes it easier to manage your key
570570
namespaces.
571571

572-
**Warning** This feature won't apply to commands like [KEYS](http://redis.io/commands/KEYS) and [SCAN](http://redis.io/commands/scan) that take patterns rather than actual keys([#239](https://github.com/luin/ioredis/issues/239)),
573-
and this feature also won't apply to the replies of commands even if they are key names ([#325](https://github.com/luin/ioredis/issues/325)).
572+
**Warning** This feature won't apply to commands like [KEYS](http://redis.io/commands/KEYS) and [SCAN](http://redis.io/commands/scan) that take patterns rather than actual keys([#239](https://github.com/redis/ioredis/issues/239)),
573+
and this feature also won't apply to the replies of commands even if they are key names ([#325](https://github.com/redis/ioredis/issues/325)).
574574

575575
```javascript
576576
const fooRedis = new Redis({ keyPrefix: "foo:" });
@@ -1443,7 +1443,7 @@ Thank you for using ioredis :-)
14431443

14441444
This project exists thanks to all the people who contribute:
14451445

1446-
<a href="https://github.com/luin/ioredis/graphs/contributors"><img src="https://opencollective.com/ioredis/contributors.svg?width=890&showBtn=false" /></a>
1446+
<a href="https://github.com/redis/ioredis/graphs/contributors"><img src="https://opencollective.com/ioredis/contributors.svg?width=890&showBtn=false" /></a>
14471447

14481448
# License
14491449

0 commit comments

Comments
 (0)