Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
cachet-api
Advanced tools
A Node.js API client for Cachet.
Cachet is a beautiful and powerful open source status page system, a free replacement to services such as StatusPage.io, Status.io and others.
First, install the package using npm:
npm install cachet-api --save
Then, start using the package by importing and configuring it:
var CachetAPI = require('cachet-api');
// Fill in the parameters accordingly
var cachet = new CachetAPI({
// Base URL of your installed Cachet status page
url: 'https://demo.cachethq.io',
// Cachet API key (provided within the admin dashboard)
apiKey: 'a1b2c3d4e5f6g7h8i9'
});
Make sure to fill in your Cachet status page url
as well as your Cachet admin account's apiKey
, which you can find in the Cachet dashboard.
Use cachet.getComponentById(id)
to fetch details about an existing component:
// Prepare a component ID to fetch
var componentId = 1;
// Get component info by ID
cachet.getComponentById(componentId)
.then(function (component) {
// Log component info
console.log('Component', component);
}).catch(function (err) {
// Log errors to console
console.log('Fatal Error', err);
});
Use cachet.publishMetricPoint(point)
to publish a new metric point to an existing metric:
// Prepare a metric point to publish (so it shows up on the metric's graph)
var metricPoint = {
// Metric ID
id: 1,
// Metric point value
value: 3.37,
// Metric point timestamp (optional, defaults to now)
timestamp: Math.round(new Date().getTime() / 1000)
};
// Publish it so it shows up on the status page
cachet.publishMetricPoint(metricPoint)
.then(function (response) {
// Log API response
console.log('Metric point published at ' + response.data.created_at);
}).catch(function (err) {
// Log errors to console
console.log('Fatal Error', err);
});
Use cachet.reportIncident(incident)
to report a new status incident:
// Prepare an incident to report
var incident = {
// Incident name
name: 'Database connectivity issues',
// Incident description (supports markdown)
message: 'We\'re investigating connectivity issues with the main DB.',
// Incident status (https://docs.cachethq.io/docs/incident-statuses)
status: 'Investigating',
// Whether the incident will be visible to the public or only to logged in users
visible: true,
// Whether to send out e-mail notifications to subscribers regarding this incident
notify: true,
// Component ID affected by this incident (optional)
component_id: 1,
// Component status (required if component_id is specified) (https://docs.cachethq.io/docs/component-statuses)
component_status: 'Partial Outage'
};
// Report it so it shows up on the status page
cachet.reportIncident(incident)
.then(function (response) {
// Log API response
console.log('New incident reported at ' + response.data.created_at);
}).catch(function (err) {
// Log errors to console
console.log('Fatal Error', err);
});
Use cachet.deleteIncidentById(id)
to delete an existing status incident:
cachet.deleteIncidentById(incidentId)
.then(function (response) {
// Log API response
console.log('Incident successfully deleted');
}).catch(function (err) {
// Log errors to console
console.log('Fatal Error', err);
});
Use cachet.getIncidentsByComponentId(componentId)
to fetch all incidents associated with the provided component:
cachet.getIncidentsByComponentId(componentId)
.then(function (incidents) {
// Log API response
console.log('Incidents successfully fetched', incidents);
}).catch(function (err) {
// Log errors to console
console.log('Fatal Error', err);
});
Apache 2.0
FAQs
An API client for Cachet, the open source status page system.
We found that cachet-api 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.