
Security News
npm v12 Ships With Install Scripts Off by Default, Begins Deprecating 2FA-Bypass Tokens
npm v12 is generally available, turning install scripts off by default and beginning the deprecation of 2FA-bypass publishing tokens.
@prisma-next/runtime-executor
Advanced tools
Target-agnostic execution engine for Prisma Next.
The runtime-executor package provides the target-neutral execution engine responsible for plan validation, marker verification, plugin lifecycle, telemetry, and the runtime SPI definition. It is designed to work with any target family (SQL, document, graph, etc.) through the RuntimeFamilyAdapter interface.
Provide a target-agnostic execution engine that family runtimes (e.g., @prisma-next/sql-runtime) can compose with family-specific adapters, drivers, and codecs.
RuntimeFamilyAdapter interface that family runtimes implementFamily runtimes implement this interface to provide:
readMarkerStatement() - Returns SQL/query statement to read markervalidatePlan(plan, contract) - Family-specific plan validationcontract - The family-specific contract typeThe target-neutral runtime implementation that:
RuntimeFamilyAdapter and driver@prisma-next/contract - Plan types@prisma-next/operations - Operation registryNo SQL-specific dependencies - This package is target-agnostic.
Family runtimes (e.g., @prisma-next/sql-runtime) compose runtime-executor with family-specific implementations:
import { createRuntimeCore } from '@prisma-next/runtime-executor';
import { SqlFamilyAdapter } from './sql-family-adapter';
const familyAdapter = new SqlFamilyAdapter(contract);
const core = createRuntimeCore({
familyAdapter,
driver,
verify: { mode: 'onFirstUse', requireMarker: false },
operationRegistry,
plugins: [budgets(), lints()],
});
createRuntimeCore - Create a target-neutral runtime instanceRuntimeFamilyAdapter - Interface for family runtimesMarkerReader - Interface for marker readingbudgets, lints - Target-neutral pluginsruntimeError - Error envelope utilitiescomputeSqlFingerprint - SQL fingerprint computationparseContractMarkerRow - Marker parsing utilitiesIncludes a mock-family smoke test (test/mock-family.test.ts) that proves runtime-executor can work without SQL dependencies.
FAQs
Target-agnostic execution engine for Prisma Next
The npm package @prisma-next/runtime-executor receives a total of 56 weekly downloads. As such, @prisma-next/runtime-executor popularity was classified as not popular.
We found that @prisma-next/runtime-executor 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 v12 is generally available, turning install scripts off by default and beginning the deprecation of 2FA-bypass publishing tokens.

Research
/Security News
Socket tracks the activity as Operation “Muck and Load”: a threat actor uses commit-farming workflows, public dead drops, and protected archives to stage Windows RAT and infostealer malware.

Security News
pnpm 11.10 hardens registry auth to block token redirection, tightens pack-app and deploy, and makes the Rust port (v12) installable.