Latest Threat ResearchGlassWorm Loader Hits Open VSX via Developer Account Compromise.Details
Socket
Book a DemoInstallSign in
Socket

@nerdalytics/beacon

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nerdalytics/beacon

A lightweight reactive state library for Node.js backends. Enables reactive state management with automatic dependency tracking and efficient updates for server-side applications.

latest
Source
npmnpm
Version
1000.3.0
Version published
Weekly downloads
25
-87.37%
Maintainers
1
Weekly downloads
 
Created
Source

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

Lightweight reactive state management for Node.js backends

license:mit registry:npm:version Socket Badge

tech:nodejs language:typescript linter:biome

A lightweight reactive state library for Node.js backends. Enables reactive state management with automatic dependency tracking and efficient updates for server-side applications.

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: github.com/nerdalytics/beacon

License

MIT - See LICENSE for details.

Keywords

backend

FAQs

Package last updated on 08 Feb 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