Skip to content

Commit a9d9eb2

Browse files
committed
Renames amqp.node to amqplib
1 parent 75e0365 commit a9d9eb2

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ The following ports are available:
3535
* [Erlang](./erlang)
3636
* [Go](./go)
3737
* [Haskell](./haskell)
38-
* [JavaScript (with Node and amqp-node)](./javascript-nodejs) (using callbacks)
39-
* [JavaScript (with Node and amqp-node)](https://github.com/squaremo/amqp.node/tree/master/examples) (using promises/futures)
38+
* [JavaScript (with Node and amqplib)](./javascript-nodejs) (using callbacks)
39+
* [JavaScript (with Node and amqplib)](https://github.com/amqp-node/amqplib) (using promises/futures)
4040
* [Java with Maven](./java-mvn)
4141
* [Java (with IntelliJ IDEA)](./java-idea)
4242
* [Java](./java) (with manual dependency management)

javascript-nodejs/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ To successfully use the examples you will need a running RabbitMQ server.
99

1010
### Node.js
1111

12-
You need [Node.js](https://nodejs.org/en/download/) and [amqp.node](https://github.com/squaremo/amqp.node)
12+
You need [Node.js](https://nodejs.org/en/download/) and [amqplib](https://github.com/amqp-node/amqplib)
1313
to run these tutorials.
1414

1515

1616
### Client Library
1717

18-
To install `amqp.node` using npm:
18+
To install `amqplib` using npm:
1919

2020
``` shell
2121
npm install amqplib -g
@@ -64,4 +64,4 @@ node src/emit_log_topic.js red.rabbit Hello
6464
``` shell
6565
node src/rpc_server.js
6666
node src/rpc_client.js 30
67-
```
67+
```

javascript-nodejs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "rabbitmq-node-tutorial",
33
"version": "1.0.0",
4-
"description": "RabbitMQ amqp.node tutorial ",
4+
"description": "RabbitMQ amqplib tutorial ",
55
"dependencies": {
66
"amqplib": "latest",
77
"js-beautify": "^1.9.1",

0 commit comments

Comments
 (0)