This is a simple Promise
-based client for the WideSky application server.
It can be used for both backend and frontend application. See example code below on how to import it into your project. See the API documentation for the available functions.
- Usages
- Installing it
- Importing it
- Creating an instance of the client
- Performing an operation
- WideSky query utilities
- Building the library
- Running tests
The following section describes how the library can be used in both nodejs
and browser
context.
For the subsequent commands to work, we assume that you already have a running
Widesky
instance ready to go.
You can install the WideSky client library by executing the command from your console.
npm install @widesky/jswidesky-client --save
The simplest way to incorporate the library into your browser is by using the <script>
tag.
Example:
<script src="https://unpkg.com/@widesky/[email protected]/dist/jsWideSky.min.js"></script>
<script>
const WIDESKY_CONFIG = {
"serverURL": "https://myWideSkyServer.com",
"password": "abcdedfg",
"username": "[email protected]",
"clientId": "1231231231",
"clientSecret": "545454545445"
};
const wsClient = JsWideSky.WideSkyClient.makeFromConfig(FE_CONFIG);
wsClient.v2.find("site")
.then((res) => console.log(res));
</script>
If this is for a sophisticated web application that is build on top of a framework that supports es6
then it can be added by using the import
statement.
Example:
import jsWidesky from '@widesky/jswidesky-client/dist/jsWideSky.min.js';
const myClient = new jsWidesky.WideSkyClient(
"https://instanceName.on.widesky.cloud",
"[email protected]",
"abcdefg",
"client_id",
"client_secret");
For your debugging convenience, there is also a non minified version of the library,
wideskyClient.js
.
If this is for a NodeJS project then the following code may be used to import it.
const jsWideSky = require('@widesky/jswidesky-client');
An instance can be instantiated by using the WideskyClient
constructor.
Example:
const { WideSkyClient } = require('@widesky/jswidesky-client');
let myClient = new WideSkyClient(
server.url,
server.username,
server.password,
server.clientId,
server.secret);
Once an instance of the WideskyClient
has been instantiated.
The client will automatically perform authentication and maintain the WideSky access token for you.
That is, you can start using it as soon as the instance is instantiated.
Querying for a list of points that are tagged with the his
and kind
tags, and looking up
their fqname
virtual tag value.
let myQuery = `{
haystack {
search(filter: "point and his and kind") {
entity {
id
tags(tagFilter: "fqname") {
value
}
}
}
}
}`;
let response = await myClient.query(myQuery);
See our documentation for more information on the WideSky query language.
This library also include some of the commonly used
widesky query
utilities that can used for helping
you to construct dynamic queries through the use of
placeholder variables
.
One typical use-case for it is for example,
having a widesky query
that dynamically always
look back 1 hour in time for data on a regular
basis.
In such scenario, the $from
and $to
variables
can be defined in the history
node's range
filter.
Example:
let templateQuery = `{
haystack {
search(filter: "site", limit: 1) {
entity {
id
search(filter: "equip", whereTag: "spaceRef", limit: 1) {
entity {
id
findElec: search(filter: "point and elec", whereTag: "equipRef", limit: 2) {
entity {
id
history(rangeAbsolute: {start: "${from}", end: "${to}"}) {
timeSeries {
dataPoints {
time
value
}
}
}
}
}
}
}
}
}
}
}`;
let myFrom = lib.graphql
.exprParser
.parseDt('now-1h');
let myTo = lib.graphql
.exprParser
.parseDt('now');
let query = lib.graphql
.replace
.timeVars(templateQuery, myFrom, myTo);
let resp = await myClient.graphql(query);
To build a release of the project, run;
npm run build
$ npm run test
$ npm run coverage