
Security News
Happy Birthday, Shai-Hulud
It has been one year since Shai-Hulud made its first appearance on npm.
@virtuoso.dev/reactive-engine-react
Advanced tools
@virtuoso.dev/reactive-engine-react provides React bindings for @virtuoso.dev/reactive-engine-core: an EngineProvider component and hooks for reading cell values and publishing into nodes from components.
npm install @virtuoso.dev/reactive-engine-core @virtuoso.dev/reactive-engine-react
import { Cell } from '@virtuoso.dev/reactive-engine-core'
import { EngineProvider, useCellValue, usePublisher } from '@virtuoso.dev/reactive-engine-react'
const count$ = Cell(0)
function Counter() {
const count = useCellValue(count$)
const setCount = usePublisher(count$)
return <button onClick={() => setCount(count + 1)}>{count}</button>
}
export function App() {
return (
<EngineProvider>
<Counter />
</EngineProvider>
)
}
useCellValue / useCellValues - subscribe to one or several cellsuseCell - read a cell value and get a publisher for itusePublisher - get a publisher function for a nodeuseEngine / useEngineRef - access the engine instance from contextuseRemoteCell, useRemoteCellValue, useRemoteCellValues, useRemotePublisher - work with cells from another engine instanceMIT
FAQs
React bindings for the Virtuoso reactive engine.
The npm package @virtuoso.dev/reactive-engine-react receives a total of 773 weekly downloads. As such, @virtuoso.dev/reactive-engine-react popularity was classified as not popular.
We found that @virtuoso.dev/reactive-engine-react 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
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.

Security News
GitHub Actions now supports cache-mode, a least-privilege control on the Actions cache aimed at the cache poisoning technique behind recent compromises.