npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@akashjs/akashjs

v0.3.3

Published

A TypeScript-first UI framework with Angular's structure and Svelte's simplicity

Readme

AkashJS

A TypeScript-first UI framework with Angular's structure and Svelte's simplicity.

Fine-grained reactivity. Direct DOM rendering. Zero boilerplate.

Documentation | GitHub | Getting Started

Install

npm install @akashjs/akashjs

Or install individual packages:

npm install @akashjs/runtime @akashjs/ui

What's Included

This umbrella package bundles the full AkashJS ecosystem:

| Package | Description | |---------|-------------| | @akashjs/runtime | Signals, components, DOM rendering, Show/For, deepSignal, state management | | @akashjs/compiler | .akash SFC parsing, code generation, TypeScript language service | | @akashjs/vite-plugin | Vite integration, HMR, error overlay, .d.ts generation | | @akashjs/router | File-based routing with guards, loaders, middleware, SSR | | @akashjs/forms | Signal-based form management with validation and Zod integration | | @akashjs/http | HTTP client with interceptors, createResource, createAction, WebSocket | | @akashjs/i18n | Signal-based internationalization with pluralization and lazy loading | | @akashjs/ui | 30+ Material Design 3 components |

Features

  • Signals reactivitysignal(), computed(), effect() with automatic dependency tracking
  • Direct DOM rendering — No virtual DOM, compiler generates optimal DOM operations
  • Single-file components.akash files with <script>, <template>, <style> blocks
  • TypeScript-first — Full type safety, IDE completions, prop validation
  • Material Design 3 UI — Button, TextField, DataTable, Dialog, Drawer, Tabs, Select, Chips, and more
  • State managementdefineStore() with plugins, deepSignal() for nested reactivity
  • SSRrenderToString(), hydrate(), progressive hydration
  • Animationsanimate(), springs, stagger, FLIP, view transitions
  • Security — CSP, CSRF, sanitization, rate limiting
  • SEOuseHead(), useSEO(), OpenGraph, structured data
  • DevToolsinspect(), profiling, leak detection

Quick Start

npx @akashjs/cli create my-app
cd my-app
npm install
npm run dev

Example

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

const count = signal(0);

effect(() => {
  console.log(`Count: ${count()}`);
});

count.set(1);  // logs: "Count: 1"
count.set(2);  // logs: "Count: 2"

UI Components

import { Button, DataTable, EnhancedSelect, Accordion, ExpansionPanel } from '@akashjs/ui';

Button({ label: 'Click me', variant: 'filled', onClick: () => alert('Hello!') });

DataTable({
  columns: [
    { key: 'name', header: 'Name', sortable: true },
    { key: 'email', header: 'Email', sortable: true },
  ],
  data: () => users(),
  selectable: true,
  resizable: true,
  pageSize: 25,
});

License

MIT