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

@mostajs/app-shell-ui

v0.1.0

Published

Socle UI framework-agnostique (rendu HTML-string, zéro dépendance) : coquille de page + thème CSS + primitives (table, cartes/KPI, formulaire, échappement, format). Pendant zéro-dép de @mostajs/ui. Membre de mosta-ui-html-stack.

Downloads

260

Readme

@mostajs/app-shell-ui

Socle UI framework-agnostique (rendu HTML-string, zéro dépendance) — le « design system HTML » pour serveurs node:http.

Auteur : Dr Hamid MADANI [email protected] · Licence : AGPL-3.0-or-later · Membre de mosta-ui-html-stack.

Pendant zéro-dépendance de @mostajs/ui (React) : produit des fragments HTML sûrs (échappés) à partir de view-models. Aucune logique métier, aucun accès données, aucun routage supposé — la vue est pure et déterministe (testable par snapshot, sans navigateur). Extrait de l'app Hadhinat (incubator/app/server.mjs).

Installation

npm install @mostajs/app-shell-ui

Usage

import { page, pageTitle, cards, kpiCard, table, form, money } from '@mostajs/app-shell-ui';

const body = [
  pageTitle('StartupDZ SARL', 'بطاقة المؤسسة'),
  cards([ kpiCard('Facturation', { Loyer: 12000, Total: 21000 }, { fmt: { Loyer: money, Total: money } }) ]),
  table(rows, { trail: { header: 'Action', render: (r) => `<button class="act">${r.act}</button>` } }),
  form([{ name: 'qty', label: 'Quantité', type: 'number', value: 1 }], { action: '/subscribe', title: 'Souscrire' }),
].join('');

const html = page({ title: 'StartupDZ', brand: '🏢 Hadhinat', nav: [{ href: '/', label: 'Architecture' }], body });
// → document HTML complet, prêt à servir via node:http

API

| Groupe | Fonctions | |---|---| | Coquille | page({title, body, brand, nav, footer, suffix, head, theme}) · header · footer · pageTitle(h, sub?) · back(href, label?) · empty(text?) | | Contenu | table(rows, {cols, hidden, cell, lead, trail, empty}) · kpiCard(title, metrics, {fmt}) · card(title, html) · cards([...]) · form(fields, {action, method, title, submit, enctype, extra}) | | Utilitaires | esc(s) · money(n, {currency, locale}) · TOKENS · THEME_CSS |

Sécurité : les valeurs sont échappées par défaut (esc). Les rendus bruts (body, lead, trail, extra, footer) sont sous la responsabilité de l'appelant. Le thème ne porte pas les styles image-map (→ @mostajs/imagemap-ui).

Tests & exemple

npm test         # 7 tests (snapshot/structure)
npm run example  # rend une page complète → examples/out.html

Voir docs/00-PROPOSITION-PLAN-APP-SHELL-UI-20062026.md (lot UI-1) et mostajs/PLAN-EXTRACTION-UI-MODULES-20062026.md.