
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.
@virtuoso.dev/reactive-engine-core
Advanced tools
Framework-agnostic reactive state engine built on a graph of typed nodes.
@virtuoso.dev/reactive-engine-core is a framework-agnostic reactive state engine. State is modeled as a graph of typed nodes — stateful cells, stateless streams, and valueless triggers — connected through operators and combinators. An Engine instance activates the graph, propagates values, and manages subscriptions.
The package is part of the Reactive Engine family:
@virtuoso.dev/reactive-engine-react - React bindings (provider and hooks)@virtuoso.dev/reactive-engine-query - data fetching with queries and mutations@virtuoso.dev/reactive-engine-router - routing with routes, layouts, and guards@virtuoso.dev/reactive-engine-storage - cell persistence in local/session storage or cookiesnpm install @virtuoso.dev/reactive-engine-core
import { Cell, Engine } from '@virtuoso.dev/reactive-engine-core'
const count$ = Cell(0)
const engine = new Engine()
engine.sub(count$, (value) => {
console.log('count is now', value)
})
engine.pub(count$, 1)
engine.getValue(count$) // 1
map, filter, scan, debounceTime, throttleTime, withLatestFrom, and more) transform values as they flow between nodes.link, pipe, combine, merge) wire nodes into a graph.MIT
FAQs
Framework-agnostic reactive state engine built on a graph of typed nodes.
The npm package @virtuoso.dev/reactive-engine-core receives a total of 1,197 weekly downloads. As such, @virtuoso.dev/reactive-engine-core popularity was classified as popular.
We found that @virtuoso.dev/reactive-engine-core demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 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.