
Product
Introducing Webhook Events for Alert Changes
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.
@arktype/regex
Advanced tools
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
We found that @arktype/regex 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
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.

Security News
ENISA has become a CVE Program Root, giving the EU a central authority for coordinating vulnerability reporting, disclosure, and cross-border response.

Product
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.