You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

@getforma/core

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@getforma/core

Signals-based reactive framework for the real DOM. Fine-grained reactivity, zero VDOM.

Source
npmnpm
Version
0.1.0
Version published
Weekly downloads
119
-92.96%
Maintainers
1
Weekly downloads
 
Created
Source

FormaJS

CI npm License: MIT

Reactive DOM library with fine-grained signals, islands architecture, and SSR hydration. ~15KB gzipped.

Install

npm install @getforma/core

Quick Start

import { createSignal, h, mount } from '@getforma/core';

const [count, setCount] = createSignal(0);

mount(() =>
  h('button', { onClick: () => setCount(count() + 1) },
    () => `Clicked ${count()} times`
  ),
  '#app'
);

Features

  • Fine-grained reactivity — signals, effects, computed values via alien-signals
  • Virtual DOMh() function with reactive attribute and text binding
  • Islands architectureactivateIslands() for partial hydration of server-rendered HTML
  • Conditional renderingcreateShow(), createSwitch() with cached branches
  • List renderingcreateList() with keyed reconciliation, handles 50K+ rows
  • State managementcreateStore() with deep reactivity, history, persistence
  • SSR support — server-side rendering runtime with hydration

Ecosystem

  • forma — Rust server framework (forma-ir + forma-server)
  • forma-tools — Build tooling (@getforma/compiler + @getforma/build)
  • create-forma-app — CLI scaffolder

License

MIT

Keywords

signals

FAQs

Package last updated on 13 Mar 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