
Security News
OpenClaw Skill Marketplace Emerges as Active Malware Vector
Security researchers report widespread abuse of OpenClaw skills to deliver info-stealing malware, exposing a new supply chain risk as agent ecosystems scale.
@nerdalytics/beacon-rewind
Advanced tools
Persist Beacon state. Rewind when you need to.
Persist @nerdalytics/beacon reactive state to SQLite. State changes are automatically saved and restored on restart, with built-in destructive rewind via rewind().
npm install beacon-rewind --save-exact
Requires Node.js >= 22 and @nerdalytics/beacon as a peer dependency.
import { state } from '@nerdalytics/beacon'
import { BeaconRewind } from 'beacon-rewind'
const db = new BeaconRewind({ databasePath: 'app.sqlite' })
const count = state(0)
// Persist state — restores previous value if it exists
const cleanup = db.persist('count', count)
count.set(1)
count.set(2)
count.set(3)
// Rewind 2 steps: 3 → 2 → 1
db.rewind('count', 2)
console.log(count()) // 1
// Stop persisting and drop the table
cleanup?.()
Full documentation, API reference, and examples available at: github.com/nerdalytics/beacon-rewind
MIT
FAQs
Persist Beacon state. Rewind when you need to.
The npm package @nerdalytics/beacon-rewind receives a total of 0 weekly downloads. As such, @nerdalytics/beacon-rewind popularity was classified as not popular.
We found that @nerdalytics/beacon-rewind demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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
Security researchers report widespread abuse of OpenClaw skills to deliver info-stealing malware, exposing a new supply chain risk as agent ecosystems scale.

Security News
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.

Research
/Security News
Malicious dYdX client packages were published to npm and PyPI after a maintainer compromise, enabling wallet credential theft and remote code execution.