
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
@wrkspace-co/interceptor
Advanced tools
Interceptor is an on-demand translation compiler that scans your code for translation calls, translates missing strings via an LLM, and writes them into your i18n message files. It keeps translation management aligned with how teams actually ship software: by extracting from source, preserving manual edits, and generating only what’s missing.
Docs: https://wrkspace-co.github.io/Interceptor/
t("...") calls and fills in missing translations for each locale. You only review and refine the output, not copy‑paste strings across files.t() callspnpm add -D @wrkspace-co/interceptor
interceptor.config.ts:import type { InterceptorConfig } from "@wrkspace-co/interceptor";
const config: InterceptorConfig = {
locales: ["en", "fr"],
defaultLocale: "en",
llm: {
provider: "openai",
model: "gpt-4o-mini",
apiKeyEnv: "OPENAI_API_KEY"
},
i18n: {
messagesPath: "src/locales/{locale}.json"
}
};
export default config;
.env:OPENAI_API_KEY=sk-your-real-key
pnpm interceptor
Vite:
import { defineConfig } from "vite";
import { interceptorVitePlugin } from "@wrkspace-co/interceptor/vite";
export default defineConfig({
plugins: [interceptorVitePlugin({ configPath: "interceptor.config.ts" })]
});
Webpack:
const { InterceptorWebpackPlugin } = require("@wrkspace-co/interceptor/webpack");
module.exports = {
plugins: [new InterceptorWebpackPlugin({ configPath: "interceptor.config.ts" })]
};
Supports OpenAI, Gemini, Claude, Mistral, Cohere, Groq, DeepSeek, and OpenAI-compatible providers. See docs for configuration examples.
Credits Interceptor is a part of Wrkspace Co. © group.
FAQs
On-demand translation compiler for i18n message files
We found that @wrkspace-co/interceptor 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.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.