Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@airops/js_sdk
Advanced tools
⚠️ Deprecated Package
This package is no longer maintained and is deprecated. Please use the new package @airops/airops-js
, which provides enhanced features and improvements.
🔄 Migration Guide
To migrate to the new package just install @airops/airops-js
by running the following command:
npm install @airops/airops-js
Server configuration
To authenticate with our API using the SDK, you'll need three pieces of information: your workspace id, user id, and API key. First, use the API key to hash your user id on your back-end server. This will result in a hashed user id that is unique to your API key and user id combination. Workspace id and API key can be found in your workspace settings. Below is an example nodejs configuration.
const crypto = require('crypto');
const userIdHash = () => {
const apiKey = "YOUR_API_KEY";
const userId = "YOUR_USER_ID";
// Convert your api key to a buffer
const key = Buffer.from(apiKey, 'utf-8');
// Hash the message using HMAC-SHA256 and the key
const hash = crypto.createHmac('sha256', key)
.update(userId)
.digest('hex');
return hash;
}
Install the client SDK
npm i @airops/js_sdk
Identify the user
const airopsInstance = AirOps.identify({
userId: 'YOUR_USER_ID',
workspaceId: 'YOUR_WORKSPACE_ID',
hashedUserId: 'YOUR_USER_ID_HASH'
})
Use it to execute an app
Once you have successfully initialized the SDK, you can begin using the methods available to interact with our API. Note that the methods will return promises.
// Execute an app
const response = await airopsInstance.apps.execute({
appId: 1,
version: 1,
payload: {
"inputs": {
"name": "XXXXYYYYZZZZ"
}
}
});
// Wait for result
const result = await response.result();
// Do something with result.output
// Cancel execution
await response.cancel();
Example response
The response from the execute method will contain the execution id that can be used to retrieve results later along with two methods to wait for results or cancel the execution:
interface ExecuteResponse {
executionId: number;
result: () => Promise<AppExecution>;
cancel: () => Promise<void>;
}
interface AppExecution {
airops_app_id: number;
id: number;
status: string;
output: string;
stream_channel_id: string;
}
Execute an app with streaming
In order to stream the app results you will need to enable stream and pass a callback function to the execute method. Optionally you can pass an extra callback function to get a notification when the app is finished.
const response = await airopsInstance.apps.execute({
appId: 1,
version: 1,
payload: {
inputs: {
name: "XXXXYYYYZZZZ",
},
},
stream: true,
streamCallback: (data: { content: string }) => {
// Do something with the data
},
streamCompletedCallback: (data: { content: string }) => {
// Do something with the data
},
});
Pull results async
You can implement your own pulling logic using the getResults method.
const result = await airopsInstance.apps.getResults({
appId: 1,
executionId: response.executionId,
});
Error handling
try {
await airopsInstance.apps.execute({
appId: 1,
version: 4,
payload: {
inputs: { name: "XXXXYYYYZZZZ" },
},
});
} catch (e) {
// Do something with error.message
}
Chat assistant
const response = await airopsInstance.apps.chatStream({
appId: 2,
message,
streamCallback: (data: { token: string; }) => {
// do something with data.token
},
streamCompletedCallback: (data: { result: string }) => {
// do something with data.result
},
...(sessionId && { sessionId }), // optionally pass sessionId to continue chat.
});
// Wait for result
const result = await response.result;
// Do something with result.result
// Use session id to continue chat
response.sessionId;
Example response
The response from the chatStream method will contain the sessionId and a result method to wait for the response. In order to continue with the chat pass the sessionId along with the message.
export interface ChatStreamResponse {
sessionId: string;
result: Promise<{ result: string }>; // result is a promise that resolves when the execution is completed.
}
FAQs
JavaScript SDK
We found that @airops/js_sdk demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.