
Security News
Open VSX Unblocks Extension IDs Used in Malware Campaign
Open VSX has removed three extension IDs from its malicious-extension list as the legitimate publishers they impersonated move to claim the names for themselves.
@inferlane/sdk
Advanced tools
Multi-provider LLM proxy SDK with smart routing, streaming, and cost optimization
TypeScript SDK for the InferLane API. Route, schedule, and optimize AI inference across providers.
npm install @inferlane/sdk
import { InferLane } from '@inferlane/sdk';
const il = new InferLane({ apiKey: 'il_...' });
// Route to cheapest provider
const response = await il.dispatch({
prompt: 'Explain quantum computing',
routing: 'cheapest',
});
// Schedule for later
await il.schedule({
prompt: 'Generate weekly report',
model: 'claude-sonnet-4',
scheduleType: 'RECURRING',
cronExpression: '0 9 * * 1',
});
// Check savings
const savings = await il.savings({ period: '30d' });
console.log(`Saved $${savings.totalSaved}`);
import { ... } from '@inferlane/sdk'; // Core SDK
import { ... } from '@inferlane/sdk/openai'; // OpenAI-compatible client
import { ... } from '@inferlane/sdk/ingest'; // Usage ingestion
import { ... } from '@inferlane/sdk/estimate'; // Cost estimation
import { ... } from '@inferlane/sdk/vercel-ai'; // Vercel AI SDK integration
import { ... } from '@inferlane/sdk/langchain'; // LangChain integration
dispatch(options) — Send a promptschedule(options) — Schedule a prompttriage(options) — Classify a promptsavings(options) — View cost savingsmodels() — List available modelshealth() — Provider health statusMIT
FAQs
Multi-provider LLM proxy SDK with smart routing, streaming, and cost optimization
We found that @inferlane/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.

Security News
Open VSX has removed three extension IDs from its malicious-extension list as the legitimate publishers they impersonated move to claim the names for themselves.

Product
Socket’s PHP and Composer support is now in Beta for all customers, with PHP reachability analysis generally available.

Product
Socket is bringing experimental protection to Firefox, scanning 97,000+ extensions in Mozilla's official directory for malware and risky updates.