Socket
Book a DemoInstallSign in
Socket

echelonjs

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

echelonjs

A new JSX/TSX based framework with decorator-driven reactivity.

0.2.0
latest
Source
npmnpm
Version published
Weekly downloads
7
600%
Maintainers
1
Weekly downloads
 
Created
Source

Echelon Framework

Echelon is a decorator-driven framework with full JSX/TSX support. It lets you build modular components in TypeScript with minimal boilerplate.

Key Features

  • Decorator based reactivity: Manage component state and attributes using decorators such as @State, @Prop and @Component.
  • JSX/TSX support: Full TypeScript and JSX support improves type safety and developer productivity.
  • Component system: Build and manage modular UI using reusable components.
  • Declarative rendering: Define component UI declaratively with the @Render decorator.
  • Event handling: Handle DOM events easily via the @Event decorator.
  • Lifecycle management: Define lifecycle hooks like @Mounted for components.

Quick Start

npm install echelonjs
import { createElement, Component, Render, State, mount } from 'echelonjs';

@Component('button')
class Counter {
  @State() count = 0;
  @Render()
  render() {
    return <span>{this.count}</span>;
  }
}

const root = document.getElementById('app');
if (root) {
  mount(<Counter />, root);
}

For full installation instructions and a detailed tutorial, see the documentation.

License

This project follows the MIT license as specified in package.json.

Keywords

echelon

FAQs

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

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.