This release adds 3 notable features for engineering teams evaluating rollout.
✓ No known CVEs patched in this version
Topics
+8 more
Summary
AI summaryAdded Remix and SvelteKit plugins, in‑memory scan statistics tracking, and a consistent navbar across documentation pages.
Full changelog
What's New
Remix Plugin
@pompelmi/remix is now available on npm.
npm install @pompelmi/remix pompelmi
import { withPompelmi } from '@pompelmi/remix'
export const action = withPompelmi(async ({ request }) => {
const formData = await request.formData()
return json({ ok: true })
}, { host: 'localhost', port: 3310 })
SvelteKit Plugin
@pompelmi/sveltekit is now available on npm.
npm install @pompelmi/sveltekit pompelmi
import { withPompelmi } from '@pompelmi/sveltekit'
export const POST = withPompelmi(async ({ request }) => {
return new Response(JSON.stringify({ ok: true }))
}, { host: 'localhost', port: 3310 })
Scan Statistics
Track scan activity in-memory with createStats():
const { createStats } = require('pompelmi')
const stats = createStats()
const result = await stats.track(() => scan(filePath, options))
stats.get()
// {
// totalScanned: 1247,
// totalClean: 1245,
// totalInfected: 2,
// totalErrors: 0,
// avgScanTimeMs: 45,
// lastScanAt: '2026-05-07T...',
// uptime: 3600000
// }
app.get('/pompelmi/stats', (req, res) => res.json(stats.get()))
Navbar Fix
All docs/ HTML pages now have a consistent navbar linking to every
page in the documentation site. Previously several pages were missing
links to newer sections.
Framework Integrations
| Package | Framework |
|---------|-----------|
| @pompelmi/nestjs | NestJS |
| @pompelmi/fastify | Fastify |
| @pompelmi/nextjs | Next.js |
| @pompelmi/hono | Hono |
| @pompelmi/remix | Remix |
| @pompelmi/sveltekit | SvelteKit |
| @pompelmi/testing | Jest / Vitest / Node |
Changes
packages/remix/— Remix action wrapperpackages/sveltekit/— SvelteKit server handler and hooksrc/Stats.js— in-memory scan statistics trackerdocs/remix.html,docs/sveltekit.html,docs/stats.html— new docs pagesdocs/*.html— canonical navbar across all pagesREADME.md— updated framework integrations table.github/workflows/ci.yml— updated to Node.js 24 actions
Full Changelog
https://github.com/pompelmi/pompelmi/compare/v1.15.0...v1.16.0
Weekly OSS security release digest.
The CVE patches and breaking changes that affected production tools this week. One email, every Sunday.
No spam, unsubscribe anytime.
Share this release
About Pompelmi
Open-source file upload security for Node.js. Scan files before storage to detect malware, MIME spoofing, and risky archives.
Related context
Related tools
Beta — feedback welcome: [email protected]