
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.
trigguard-js
Advanced tools
TrigGuard JS client: gateway helpers, autoguard, and Express middleware for canonical POST /decide
JavaScript utilities for TrigGuard, including createTrigguardMiddleware for Express routes that call the canonical decision authority (POST /decide).
Default authority URL: https://api.trigguardai.com/decide. Only PERMIT continues to your handler; DENY, SILENCE, timeouts, and invalid responses return HTTP 403 with { "blocked": true, "reasonCode": "…" }.
import express from "express";
import { createTrigguardMiddleware } from "trigguard-js";
const app = express();
app.use(express.json());
app.post(
"/charge",
createTrigguardMiddleware({
surface: "spendCommit",
token: process.env.TRIGGUARD_TOKEN,
signals: (req) => ({ riskScore: req.body.riskScore }),
context: (req) => ({ amount: req.body.amount, origin: "api" }),
}),
(req, res) => res.json({ charged: true })
);
See docs/quickstart/express.md and examples/express-spend-guard/ in this repository.
Gateway /execute helpers (authorize, guard, …), manifest loading, and autoguard utilities remain available from the same package entry.
Apache-2.0
FAQs
TrigGuard JS client: gateway helpers, autoguard, and Express middleware for canonical POST /decide
We found that trigguard-js 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.