1.0.0-rc.1
1.0.0-rc.1
2 files changed
tree: 166ad04e3d39b3e1b012184ac79f504e6faba61b
  1. examples/
  2. perf/
  3. src/
  4. tests/
  5. .clang-format
  6. .eslintignore
  7. .eslintrc.json
  8. .gitignore
  9. binding.gyp
  10. docker-tests.sh
  11. Gruntfile.js
  12. index.js
  13. LICENSE
  14. license-header.txt
  15. package-lock.json
  16. package.json
  17. pulsar-test-service-start.sh
  18. pulsar-test-service-stop.sh
  19. pulsar-version.txt
  20. README.md
  21. run-unit-tests.sh
README.md

Pulsar Node.js client library

The Pulsar Node.js client can be used to create Pulsar producers and consumers in Node.js.

Requirements

Pulsar Node.js client library is based on the C++ client library. Follow the instructions for C++ library for installing the binaries through RPM, Deb or Homebrew packages.

(Note: you will need to install not only the pulsar-client library but also the pulsar-client-dev library)

Also, this library works only in Node.js 10.x or later because it uses the node-addon-api module to wrap the C++ library.

Compatibility

Compatibility between each version of the Node.js client and the C++ client is as follows:

Node.js clientC++ client
1.0.02.3.0 or later

If an incompatible version of the C++ client is installed, you may fail to build or run this library.

How to install

Please install pulsar-client in your project:

$ npm install pulsar-client

Sample code

Please refer to examples.

How to build

Install dependent npm modules and build Pulsar client library:

$ git clone https://github.com/apache/pulsar-client-node.git
$ cd pulsar-client-node
$ npm install

Rebuild Pulsar client library:

$ npm run build