
Security News
npm Adopts OIDC for Trusted Publishing in CI/CD Workflows
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
@arcjet/sprintf
Advanced tools
@arcjet/sprintf
Arcjet platform-independent replacement for util.format.
This package is platform-independent in order to support multiple runtimes in varying environments, such as Edge Runtime, Node.js, Bun, Deno, and Cloudflare Workers.
This is an internal utility to help us format log messages.
Itβs a fork of pinojs/quick-format-unescaped
.
We chose to fork so that we can maintain as much compatibility as possible
while being more restrictive.
You should not use this but use
pinojs/quick-format-unescaped
or one of the
alternatives instead.
This package matches our current needs which are likely different from yours.
This package is ESM only. Install with npm in Node.js:
npm install @arcjet/sprintf
import format from "@arcjet/sprintf";
console.log(format("Hello %s", "world")); // => "Hello world"
console.log(format("1 %i %d", 2, 3.0)); // => "1 2 3"
Substitutions will be made for the following character sequences if the matching
argument conforms to the type. For example, "%d"
will only be replaced by a
number, not a string or object.
Object substitution supports any value that is not undefined
.
%d
| %f
- Replaced if provided with a number.%i
- Replaced if provided with a number after Math.floor
is called on it.%O
| %o
| %j
- Replaced if provided with any value after
JSON.stringify
is called on it. Objects with circular references will be
replaced with [Circular]
. Functions will be replaced with the function name
or <anonymous>
if unnamed.%s
- Replaced if provided with a string.%%
- Replaced by the literal %
character.1.0.0-beta.10 (2025-08-04)
$env
, not process.env
(#4754) (5a87f0d)ip
tests (#4632) (aea416a)FAQs
Arcjet platform-independent replacement for util.format
The npm package @arcjet/sprintf receives a total of 14,953 weekly downloads. As such, @arcjet/sprintf popularity was classified as popular.
We found that @arcjet/sprintf demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago.Β It has 3 open source maintainers 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.
Security News
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.