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

idml-ui

v0.1.0

Published

UI configuration framework for Next.js 15 + TypeScript + Tailwind CSS

Downloads

152

Readme

idml

A configuration-driven UI framework for Next.js 15 + TypeScript + Tailwind CSS.

Define your entire UI (layout, theming, data bindings) in a single JSON config file. Changes are reflected instantly in development without full page reloads.

Features

  • Config-first: Declare pages, layouts, components, and design tokens in ui.config.json
  • Percentage-based scaling: Enforced no-pixel rule — all layout dimensions use percentages of parent container
  • Design tokens: Centralized colors, typography, and spacing scales
  • Data binding: Reference named methods to wire data and event handlers
  • Live editor: Browser-based visual editor with click-to-select and property panel
  • Hot reload: File changes trigger instant UI updates in development
  • Type-safe: Full TypeScript support with Zod runtime validation

Quick start

1. Install

npm install idml-ui

2. Initialize

npx idml init

This scaffolds ui.config.json and wires up the Next.js plugin.

3. Define your UI

Edit ui.config.json:

{
  "version": "1",
  "tokens": {
    "colors": [
      { "name": "primary", "value": "#1a56db" }
    ],
    "typography": [
      { "name": "heading-xl", "fontSize": "2.25rem", "fontWeight": 700 }
    ],
    "spacing": [
      { "name": "gap-md", "value": "1rem" }
    ]
  },
  "pages": [{
    "route": "/",
    "layout": {
      "type": "flex",
      "direction": "column",
      "size": { "width": "100%", "height": "100%" },
      "children": []
    },
    "components": []
  }]
}

4. Render in your app

import { ConfigProvider, ConfigRenderer } from 'idml-ui';
import config from './ui.config.json';

export default function Home() {
  return (
    <ConfigProvider config={config} methods={[]} components={[]}>
      <ConfigRenderer page="/" />
    </ConfigProvider>
  );
}

5. Open the editor

npm run dev

Visit http://localhost:3000/_isd-editor to edit your UI visually.

Architecture

  • 3 entry points:

    • idml (client/browser) — React components for rendering
    • idml-ui/server (Node.js) — Next.js plugin, file watcher, SSE routes
    • idml/cli (binary) — npx idml init scaffolding tool
  • No-pixel rule: All width, height, min-*, max-* values must be percentages. This prevents CSS stacking issues and makes layouts predictable.

  • Design tokens: Define once, use everywhere. Token values are injected as CSS custom properties.

  • Data binding: Connect components to methods registered via ConfigProvider.methods.

License

MIT