@milaboratories/pl-client
v2.5.9
Published
New TS/JS client for Platform API
Downloads
1,926
Readme
Pl URL
http(s)://address:port/?...parameters...
Parameters:
- alternative-root - alternative root (description will be added / ask pl team / see client initialization code)
- request-timeout - default unary request timeout
- tx-timeout - default transaction timeout
- grpc-proxy - if specified, this address will be used to route grpc traffic via proxy
- http-proxy - if specified, this address will be used to route http traffic via proxy
Example:
http(s)://address:port/alternative-root=tmproot&request-timeout=10000
How to pull and build proto files
Dependencies:
protoc
brew install protobuf
- you don't need
protoc-gen-js
, just runnpm install
protodep
go install github.com/milaboratory/[email protected]
check that you have
${HOME}/go/bin
inPATH
rsync
./sync-proto.sh
Running tests
Unauthenticated
PL_ADDRESS="http://127.0.0.1:6345" npm run test
Authenticated
PL_ADDRESS="http://127.0.0.1:6345" PL_TEST_USER="test-user" PL_TEST_PASSWORD="test-password" npm run test
Authentication information (token) cached in git-ignored .test_auth.json
file.