Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@nerdalytics/beacon

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nerdalytics/beacon

Reactive dependency graph runtime for Node.js backends. Tracks dependencies between signals and propagates updates automatically.

Source
npmnpm
Version
1000.3.3
Version published
Maintainers
1
Created
Source

Beacon A stylized lighthouse beacon with golden light against a dark blue background, representing the reactive state library

Reactive dependency graph runtime for Node.js backends. Tracks dependencies between signals and propagates updates automatically.

license:mit registry:npm:version Socket Badge

tech:nodejs language:typescript linter:biome

Installation

npm install @nerdalytics/beacon --save-exact

Quick Start

import { state, derive, effect } from '@nerdalytics/beacon';

const count = state(0);
const doubled = derive(() => count() * 2);

effect(() => {
  console.log(`Count: ${count()}, Doubled: ${doubled()}`);
});

count.set(5);
// => "Count: 5, Doubled: 10"

Documentation

Full documentation, API reference, and examples available at: nerdalytics.github.io/beacon

LLM-friendly docs

The handbook has plain-text endpoints for LLMs:

You can also append .md to any handbook page URL for its Markdown source (e.g. <version>/introduction.md).

License

MIT - See LICENSE for details.

Keywords

backend

FAQs

Package last updated on 09 Apr 2026

Did you know?

Socket

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.

Install

Related posts