You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## ⚠️⚠️⚠️ This is work in progress and published only as a beta version. For the current stable version see the [5.x branch](https://github.com/zeromq/zeromq.js/tree/5.x) ⚠️⚠️⚠️
5
+
## ⚠️⚠️⚠️ This is work in progress and published as a beta version. For the current stable version see the [5.x branch](https://github.com/zeromq/zeromq.js/tree/5.x) ⚠️⚠️⚠️
6
6
7
7
[ØMQ](http://zeromq.org) bindings for Node.js. The goals of this library are:
8
8
* Semantically similar to the [native](https://github.com/zeromq/libzmq) ØMQ library, while sticking to JavaScript idioms.
@@ -26,7 +26,7 @@
26
26
Install ZeroMQ.js with prebuilt binaries:
27
27
28
28
```sh
29
-
npm install zeromq@6.0.0-beta.1
29
+
npm install zeromq
30
30
```
31
31
32
32
Requirements for prebuilt binaries:
@@ -44,13 +44,13 @@ If a prebuilt binary is not available for your platform, installing will attempt
44
44
If you want to link against a shared ZeroMQ library, you can build and link with the shared library as follows:
45
45
46
46
```sh
47
-
npm install zeromq@6.0.0-beta.1 --zmq-shared
47
+
npm install zeromq --zmq-shared
48
48
```
49
49
50
50
If you wish to use any DRAFT sockets then it is also necessary to compile the library from source:
51
51
52
52
```sh
53
-
npm install zeromq@6.0.0-beta.1 --zmq-draft
53
+
npm install zeromq --zmq-draft
54
54
```
55
55
56
56
Make sure you have the following installed before attempting to build from source:
0 commit comments