TL;DR Install the package npm install hazelcast-client, grab a demo app and read API docs. Time To «Hello World!» less than 5 min. Intro On the behalf of Hazelcast Team, I’m pleased to announce the availability of version 0.2 of the Hazelcast Client for Node.js.
The new version includes following features:
IMap
Node.js client supports following operations of IMap - get, put, remove.
Smart Client
A client connects to each cluster node. Since each data partition uses the well known and consistent hashing algorithm, each client can send an operation to the relevant cluster node. This increases the overall throughput and efficiency. Plus, you don’t need to restart the client when adding or removing nodes from the cluster.
...