You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

@solid-primitives/set

Package Overview
Dependencies
Maintainers
3
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@solid-primitives/set

The Set & WeakSet data structures as a reactive signals.

0.7.2
latest
Source
npmnpm
Version published
Maintainers
3
Created
Source

Solid Primitives Set

@solid-primitives/set

size version stage

The Javascript built-in Set & WeakSet data structures as a reactive signals.

  • ReactiveSet - A reactive version of a Javascript built-in Set class.
  • ReactiveWeakSet - A reactive version of a Javascript built-in WeakSet class.

Installation

npm install @solid-primitives/set
# or
yarn add @solid-primitives/set
# or
pnpm add @solid-primitives/set

ReactiveSet

A reactive version of a Javascript built-in Set class.

How to use it

Import

import { ReactiveSet } from "@solid-primitives/set";

Basic usage

const set = new ReactiveSet([1, 1, 2, 3]);

// listen for changes reactively
createEffect(() => {
  [...set]; // => [1,2,3] (reactive on any change)
  set.has(2); // => true (reactive on change to the result)
});

// apply like with normal Set
set.add(4);
set.delete(2);
set.clear();

ReactiveWeakSet

A reactive version of a Javascript built-in WeakSet class.

How to use it

Import

import { ReactiveWeakSet } from "@solid-primitives/set";

Basic usage

const set = new ReactiveWeakSet([1, 1, 2, 3]);

// listen for changes reactively
createEffect(() => {
  set.has(2); // => true (reactive on change to the result)
});

// apply changes like with normal Set
set.add(4);
set.delete(2);

Changelog

See CHANGELOG.md

Keywords

solid

FAQs

Package last updated on 29 Jun 2025

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