@gridgain/thin-client
v1.2.0
Published
NodeJS Client for Gridgain Community Edition
Downloads
54
Maintainers
Readme
Node.js Client for GridGain
Installation
Node.js version 8 or higher is required. Either download the Node.js pre-built binary for the target platform, or install Node.js via package manager.
Once node
and npm
are installed, you can use one of the following installation options.
Installation via npm
This is a recommended way for users. Execute the following command to install the Node.js Thin Client package:
npm install -g @gridgain/thin-client
Installation from Sources
This way is more suitable for developers or if you install client from zip archive. If you want to install the Thin Client library from GridGain sources, please follow the steps:
- Download and/or unzip Node.js GridGain client sources to
nodejs-thin-client
- Go to
nodejs-thin-client
folder - Execute
npm link
command - Execute
npm link @gridgain/thin-client
command
cd nodejs-thin-client
npm link
npm link @gridgain/thin-client #linking examples (optional)
Updating from older version
If you installed GridGain client globally, run the following command:
npm update -g @gridgain/thin-client
If you installed GridGain client locally, follow the following instruction:
- Navigate to the
nodejs-thin-client
- In project root directory, run the
npm update
command - To test the update, run the
npm outdated
command. There should not be any output
cd nodejs-thin-client
npm update
npm outdated
Tests
Node.js Client for GridGain contains Jasmine tests to check the behavior of the client. the tests include:
- functional tests which cover all API methods of the client
- examples executors which run all examples except AuthTlsExample
- AuthTlsExample executor
Tests Installation
Tests are installed along with the client. Follow the Installation instructions.
Tests Running
- Run GridGain server locally or remotely with default configuration.
- Set the environment variable:
- IGNITE_HOME - Home of the GridGain. It is needed for tests to know how to start testing nodes.
- GRIDGAIN_CLIENT_DEBUG - (optional) if true, tests will display additional output for clients (default: false).
- GRIDGAIN_SERVER_DEBUG - (optional) if true, tests will display additional output for servers (default: false).
- Alternatively, instead of the environment variables setting, you can directly specify the values of the corresponding variables in nodejs-thin-client/spec/config.js file.
- Run the tests:
Run Functional Tests
Call npm test
command from nodejs-thin-client
folder.
Run Examples Executors
Call npm run test:examples
command from nodejs-thin-client
folder.
Run AuthTlsExample Executor
Active GridGain server node with non-default configuration is required (authentication and TLS switched on).
If the server runs locally:
- setup the server to accept TLS. During the setup use
keystore.jks
andtruststore.jks
certificates fromnodejs-thin-client/examples/certs/
folder. Password for the files:123456
- switch on the authentication on the server. Use the default username/password.
If the server runs remotely, and/or other certificates are required, and/or non-default username/password is required - see this instruction.
Call npm run test:auth_example
command from nodejs-thin-client
folder.
Additional Setup for AuthTlsExample
- Obtain certificates required for TLS:
either use pre-generated certificates provided in the examples/certs folder. Password for the files:
123456
. Note, these certificates work for an GridGain server installed locally only.or obtain other existing certificates applicable for a concrete GridGain server.
or generate new certificates applicable for a concrete GridGain server.
The following files are needed:
- keystore.jks, truststore.jks - for the server side
- client.key, client.crt, ca.crt - for the client side
Place client.key, client.crt and ca.crt files somewhere locally, eg. into the examples/certs folder.
If needed, modify
TLS_KEY_FILE_NAME
,TLS_CERT_FILE_NAME
andTLS_CA_FILE_NAME
constants in the example source file. The default values point to the files in the examples/certs folder.Setup GridGain server to accept TLS - see appropriate GridGain documentation. Provide the obtained keystore.jks and truststore.jks certificates during the setup.
Switch on and setup authentication in GridGain server - see appropriate GridGain documentation.
If needed, modify
USER_NAME
andPASSWORD
constants in the example source file. The default values are the default GridGain username/password.
Additional Setup for FailoverExample
Start three GridGain server nodes.
If needed, modify
ENDPOINT1
,ENDPOINT2
,ENDPOINT2
constants in an example source file - GridGain node endpoints. Default values arelocalhost:10800
,localhost:10801
,localhost:10802
respectively.Run an example by calling
node FailoverExample.js
.Shut down the node the client is connected to (you can find it out from the client logs in the console).
From the logs, you will see that the client automatically reconnects to another node which is available.
Shut down all the nodes. You will see the client being stopped after failing to connect to each of the nodes.
API spec generation: instruction
It should be done if a public API class/method has been changed.
- Execute
npm install -g jsdoc
to install jsdoc (https://www.npmjs.com/package/jsdoc) - Go to
nodejs-thin-client/api_spec
- Execute
jsdoc -c conf.json --readme index.md
command.
Note: nodejs-thin-client/api_spec/conf.json
is a file with jsdoc configuration.
For more information, see GridGain Node.js Thin Client documentation.