New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

active-component

Package Overview
Dependencies
Maintainers
0
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

active-component

A simple, fast and composable library for creating reactive web interfaces

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
0
Created
Source

Active Component

This is a simple, composable and extensible library for creating reactive web interfaces. It exports primitives which can be used to describe DOM operations with element attributes. It is based on the class-action and action-object libraries.

An active component is a ClassAction sub-type that recursively processes elements to interprete attribute directives. Other class actions (known as component actions) are nested within the active component to perform the interpretative functions. This affords enormous flexibility in what meanings can be attached to directives. Component actions for most common functions, like linking element properties to javascript variables, have been implemented. Further actions may be created by 3rd-party providers or users themselves.

Installation

npm i active-component

Usage

<h1>#a</h1>
<main>#b</main>
import { ActiveComponent } from "active-component";
import { ActionObject } from "active-object";
const root = new ActionObject({ a: 'Heading', b: 'This is the content' });
const activeComponent = new ActiveComponent();
activeComponent.act({element: document.body, root})

Documentation

This library exports class actions for many common reactive actions, like data binding and array rendering. Learn about them here.

  • Note: Both the docs and the tests are still works in progress ATM.

Contributing

Help improve Active-component by contributing to this project. You can contribute in many ways. See the contributing guidelines. You can also show your support by sponsoring us.

Thank you for contributing.

Sponsors

...

Keywords

active-component

FAQs

Package last updated on 28 Jun 2024

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