
Product
Microsoft Teams Notifications Are Now Available in Socket
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.
@synap-core/sdk
Advanced tools
Type-safe tRPC client for Synap data pods. Connect any JavaScript/TypeScript app to your personal data pod with full autocomplete on all 47+ routers.
npm install @synap-core/sdk
# or
pnpm add @synap-core/sdk
import { createSynapClient } from "@synap-core/sdk";
const synap = createSynapClient({
podUrl: "https://your-pod.synap.live", // your data pod URL
apiKey: "sk_live_...", // from Workspace → Settings → API Keys
workspaceId: "ws_...", // your workspace ID
});
// Fully typed — autocomplete works on all procedures
const entities = await synap.entities.list.query({ limit: 20 });
const workspace = await synap.workspaces.get.query();
// Create an entity
await synap.entities.create.mutate({
profileSlug: "note",
title: "My first note",
properties: { content: "Hello from the SDK!" },
});
API key (server-side / external apps)
const synap = createSynapClient({
podUrl: "https://your-pod.synap.live",
apiKey: "sk_live_...", // Bearer token — generate in workspace settings
workspaceId: "ws_...",
});
Session cookie (browser — after Kratos login)
const synap = createSynapClient({
podUrl: "https://your-pod.synap.live",
workspaceId: "ws_...",
// omit apiKey — credentials: "include" is set automatically
});
import type { RouterInputs, RouterOutputs } from "@synap-core/sdk";
type EntityListInput = RouterInputs["entities"]["list"];
type EntityListOutput = RouterOutputs["entities"]["list"];
For React apps use @synap-core/react which wraps this SDK with TanStack Query hooks.
Full procedure reference: docs.synap.live/reference/api-reference
FAQs
Type-safe tRPC client SDK for Synap data pods
We found that @synap-core/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.

Product
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.

Security News
pnpm 12 rewrites the package manager in Rust, cutting install times by up to 90% while preserving pnpm 11 workflows and lockfiles.

Security News
Socket CTO Ahmad Nassri joins AppSec leaders at Black Hat to discuss active malware, package manager risks, and software supply chain defense.