
Product
Introducing Custom Pull Request Alert Comment Headers
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
@oada/client
Advanced tools
A lightweight client tool for interacting with an OADA-compliant server
This module is available through npm. To install the module, simply run:
npm install @oada/client
import { connect } from '@oada/client';
const connection = await connect({
domain: 'api.oada.com', // domain of OADA server
token: 'abc', // token
});
const response = await connection.get({
path: '/bookmarks/test',
timeout: 1000, // timeout in milliseconds (optional)
});
const dataTree = {
bookmarks: {
_type: 'application/vnd.oada.bookmarks.1+json',
_rev: 0,
thing: {
_type: 'application/json',
_rev: 0,
abc: {
'*': {
_type: 'application/json',
_rev: 0,
},
},
},
},
};
const response = await connection.get({
path: '/bookmarks/thing',
tree: dataTree,
timeout: 1000, // timeout in milliseconds (optional)
});
A watch request can be issued by sending a watch
request as follows.
// Resolves once the watch is established
const { changes } = await connection.watch({
path: '/bookmarks/test',
rev: 1, // optional
timeout: 1000, // timeout in milliseconds (optional)
});
// Async iterator for all changes since the watch was started (or since `rev`)
for await (const change of changes) {
console.log(change);
}
You can also GET the current state of the resource when establishing a watch as follows.
// Resolves once the watch is established
const { data, changes } = await connection.watch({
initialMethod: 'get',
path: '/bookmarks/test',
});
// Current body of the resource
console.dir(data);
// Async iterator for all changes since the watch was started
for await (const change of changes) {
console.log(change);
}
const response = await connection.put({
path: '/bookmarks/test',
data: { thing: 'abc' },
contentType: 'application/json',
timeout: 1000, // timeout in milliseconds (optional)
});
const dataTree = {
bookmarks: {
_type: 'application/vnd.oada.bookmarks.1+json',
_rev: 0,
thing: {
_type: 'application/json',
_rev: 0,
abc: {
'*': {
_type: 'application/json',
_rev: 0,
},
},
},
},
};
const response = await connection.put({
path: '/bookmarks/thing/abc/xyz/zzz',
tree: dataTree,
data: { test: 'something' },
timeout: 1000, // timeout in milliseconds (optional)
});
const response = await connection.head({
path: '/bookmarks/test',
timeout: 1000, // timeout in milliseconds (optional)
});
FAQs
A lightweight client tool to interact with an OADA-compliant server
The npm package @oada/client receives a total of 35 weekly downloads. As such, @oada/client popularity was classified as not popular.
We found that @oada/client demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 8 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.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.