hazelcast-remote-controller
v1.0.0
Published
Hazelcast Remote Controller
Readme
Hazelcast Remote Controller for Node.js
Build
git clone [email protected]:hazelcast/hazelcast-remote-controller.git
cd hazelcast-remote-controller/nodejs-controller
npm installUse From Other Projects
Because Hazelcast Remote Controller for Node.js is not published to NPM, you need to locally link this project from other projects you would like to use it with. After building the project, run.
npm linkChange working directory to root of the dependant project.
Run
npm link hazelcast-remote-controllerImport it like any other Javascript module.
var RemoteContoller = require('hazelcast-remote-controller')Note:
In order to use remote controller client, remote controller server should be up and running. To do that, go to root
of hazelcast-remote-controller project and run:
mvn -f server-container/ exec:java -Dexec.mainClass="com.hazelcast.remotecontroller.Main"