
Security News
US Government Forces Anthropic to Pull Claude Fable Days After Launch
Anthropic says the directive cited national security concerns over a narrow jailbreak, but offered no specific technical details.
@beepsdev/sdk
Advanced tools
TypeScript SDK for the beeps.dev API.
pnpm add @beepsdev/sdk
import { BeepsClient } from "@beepsdev/sdk";
const beeps = new BeepsClient({
apiKey: process.env.BEEPS_API_KEY!
});
const relay = await beeps.relay.create({
name: "mycompany primary on-call relay",
description: "this is our primary rotation",
externalKey: "mycompany::relay::primary"
});
List organization members to resolve emails to user IDs for schedule management.
const members = await beeps.member.list();
By default methods throw typed errors (AuthError, ValidationError, NotFoundError, RateLimitError, ServerError, NetworkError, HttpError). Use the safe variants to avoid try/catch:
const { data, error } = await beeps.relay.createSafe({...});
ValidationError includes a human-readable message and may include structured field-level issues on error.details:
import { ValidationError } from "@beepsdev/sdk";
try {
await beeps.relay.rules.create("rly_123", {
name: "Notify on-call engineer",
ruleType: "schedule_notify",
config: {
schduleId: "sch_primary",
},
});
} catch (error) {
if (error instanceof ValidationError) {
console.error(error.message);
console.error(error.details?.issues);
console.error(error.requestId);
}
}
FAQs
Unknown package
The npm package @beepsdev/sdk receives a total of 8 weekly downloads. As such, @beepsdev/sdk popularity was classified as not popular.
We found that @beepsdev/sdk demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Anthropic says the directive cited national security concerns over a narrow jailbreak, but offered no specific technical details.

Security News
A network of 152 Chrome live wallpaper extensions hid ad tracking and made extension-driven traffic look like Google search clicks.

Company News
Socket’s first CISO brings deep experience securing high-growth SaaS companies as open source supply chain threats accelerate.