Skip to content

AkashJSAngular structure, Svelte simplicity

A TypeScript-first UI framework with signals reactivity, direct DOM rendering, and zero boilerplate. 934 tests. 12 packages. Everything you need.

Start Learning

Quick Example

ts
import { signal, computed } from '@akashjs/runtime';

// Reactive state — no useState, no Zones, no RxJS
const count = signal(0);
const doubled = computed(() => count() * 2);

// Direct DOM update — no virtual DOM diffing
count.set(5);
console.log(doubled()); // 10

Install

bash
npm install @akashjs/akashjs

Or scaffold a new project:

bash
npx @akashjs/cli new my-app
cd my-app
npm install
npx akash dev

Released under the MIT License.