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

@ruvector/nervous-system-wasm

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ruvector/nervous-system-wasm

WASM bindings for ruvector-nervous-system bio-inspired AI components - HDC, BTSP, neuromorphic computing

latest
Source
npmnpm
Version
0.1.29
Version published
Maintainers
1
Created
Source

@ruvector/nervous-system-wasm

WASM bindings for bio-inspired AI components - Hyperdimensional Computing (HDC), Behavioral Time-Scale Plasticity (BTSP), and neuromorphic computing.

Features

  • Hyperdimensional Computing (HDC): High-dimensional vector operations for cognitive computing
  • Behavioral Time-Scale Plasticity (BTSP): Biologically-inspired learning mechanisms
  • Neuromorphic Computing: Brain-inspired computing primitives
  • Spiking Neural Networks: Event-driven neural computation

Installation

npm install @ruvector/nervous-system-wasm

Usage

import init, {
  HyperdimensionalMemory,
  BTSPNeuron,
  SpikingNetwork
} from '@ruvector/nervous-system-wasm';

await init();

// Create HDC memory
const hdc = new HyperdimensionalMemory(dimension);
hdc.encode("concept", data);
const similar = hdc.query(vector);

// Create BTSP neuron
const neuron = new BTSPNeuron(config);
neuron.process(input);

// Create spiking network
const snn = new SpikingNetwork(topology);
snn.simulate(spikes, duration);

Components

Hyperdimensional Computing

  • Binary/bipolar hypervectors
  • Bundling and binding operations
  • Similarity search

BTSP Learning

  • Plateau potentials
  • Dendritic computation
  • Temporal credit assignment

Neuromorphic Primitives

  • Leaky integrate-and-fire neurons
  • STDP learning
  • Spike encoding/decoding

License

MIT

  • GitHub Repository
  • Documentation

Keywords

wasm

FAQs

Package last updated on 01 Jan 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