
Product
Socket MCP Adds Org Alerts, Threat Feed Review, and Package Inspection
Socket MCP now lets AI assistants review org alerts, investigate threats using the Socket threat feed, and inspect package files in addition to dependency scoring.
A drop-in replacement for new RegExp() with types
The regex function creates a Regex instance with types for .test(), .exec() and more, statically parsed from native JS syntax:
import { regex } from "arkregex"
const ok = regex("^ok$", "i")
// Regex<"ok" | "oK" | "Ok" | "OK", { flags: "i" }>
const semver = regex("^(\\d*)\\.(\\d*)\\.(\\d*)$")
// Regex<`${bigint}.${bigint}.${bigint}`, { captures: [`${bigint}`, `${bigint}`, `${bigint}`] }>
const email = regex("^(?<name>\\w+)@(?<domain>\\w+\\.\\w+)$")
// Regex<`${string}@${string}.${string}`, { names: { name: string; domain: `${string}.${string}`; }; ...>
All you need to get started is pnpm install arkregex (or the equivalent for your package manager of choice) 🎉
Performs best with TS 5.9+
new RegExp()[a-Z] inferred more precisely?Constructing string literal types for these sorts of expressions is combinatorial and will explode very quickly if we infer character ranges like this as literal characters.
We've tried to strike a balance between performance and precision while guaranteeing that the inferred types are at worst imprecise and never incorrect.
If your expression is especially long or complex, TypeScript won't be able to infer it.
If your types start to slow down or you see the dreaded Type is excessively deep..., you can manually type your expression using regex.as:
const complexPattern = regex.as<`pattern-${string}`, { captures: [string] }>(
"very-long-complex-expression-here"
)
arkregex types are extensively tested and benchmarked using attest.
If anything not covered by the other FAQs is not behaving how you'd expect, please don't hesitate to create an issue.
regex?The ArkType extension can be installed to add syntax highlighting to regex calls.
FAQs
A drop-in replacement for new RegExp() with types
The npm package arkregex receives a total of 749,302 weekly downloads. As such, arkregex popularity was classified as popular.
We found that arkregex 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.

Product
Socket MCP now lets AI assistants review org alerts, investigate threats using the Socket threat feed, and inspect package files in addition to dependency scoring.

Product
Socket Firewall blocks malicious VS Code and Open VSX extensions before install, protecting developers from compromised editor marketplaces.

Research
More than 140 Mastra npm packages were compromised in a supply chain attack that used a typosquatted dependency to deliver a cross-platform infostealer during installation.