
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
braker-client
Advanced tools
import CloudClient from 'cloud-client';
import * as resourceInterface from './ResourceInterface';
const SERVICE_NAME = 'a-service';
const cClient = new CloudClient(SERVICE_NAME, resourceInterface);
//set health check.
cClient.setHealthCheck(resourceInterface.checkHealth);
//register http request api.
export default cClient.registerApi();
import rp from 'request-promise';
/**
* Check the service's health status.
*/
export function checkHealth() {
return rp({
method: 'get',
url: `/${SERVICE_NAME}/health`,
headers: {
'Content-Type': 'application/json'
}
});
}
export function getResource(id) {
return rp({
method: 'get',
url: `/${SERVICE_NAME}/v1/resources/:id`,
params: {id: id},
headers: {
'Content-Type': 'application/json'
}
});
}
You can use cloud client to invoke resource interface's function. example is
import resourceClient from './ResourceClient';
resourceClient.getResource(id);
The service name.
The key-value object for sending request.
Set a callback, when the circuit is open, the callback will be used for checking the service's health status, if the status is ok, the circuit will close.
return cClient.registerApi();
FAQs
An client with circuit.
We found that braker-client demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
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.