
Security News
Lovable’s OJ Rewrites Vite’s Dev Server in Rust as AI Lowers the Cost of Forking Open Source
Lovable’s OJ rewrites Vite’s dev server in Rust, reducing memory use and preview times as AI lowers the cost of open source reimplementation.
@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 11 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.

Security News
Lovable’s OJ rewrites Vite’s dev server in Rust, reducing memory use and preview times as AI lowers the cost of open source reimplementation.

Security News
It has been one year since Shai-Hulud made its first appearance on npm.

Research
/Security News
Operators behind PolinRider used a compromised GitHub account to plant malware in four development versions of a Packagist package with 700,000+ downloads.