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

@atto-ui/core

v0.1.0

Published

Typed JavaScript facade for the atto-ui native runtime.

Downloads

118

Readme

@atto-ui/core

Typed CommonJS facade over the atto-ui native N-API binding. It loads the correct platform .node binary, exposes a strongly typed AppHost, and ships spec builders for constructing runtime component trees without hand-writing JSON.

If you want a React/JSX experience, use @atto-ui/react, which is built on top of this package. Use @atto-ui/core directly when you want full control over the polling loop and component specs.

Install

npm install @atto-ui/core

The matching native binary (@atto-ui/node-<platform>) is pulled in as an optional dependency. For local development inside this repo the package falls back to the binary in crates/atto-ui-node.

Quick start

import { AppHost, VStack, Label, Button } from '@atto-ui/core'

const host = new AppHost({ headless: false })

const callback = host.allocCallback()
const windowId = host.addDynamicWindow('Hello', [2, 1, 40, 8],
  VStack([
    Label('Hello from @atto-ui/core'),
    Button('OK', { events: { click: callback } }),
  ]),
)

// Drive the non-blocking poll loop yourself.
function tick() {
  if (!host.step()) return host.dispose()
  for (const event of host.drainCallbacks()) {
    if (event.callbackId === callback) console.log('clicked', event.targetId)
  }
  setImmediate(tick)
}
tick()

What's in the box

  • AppHost — owns the terminal session, desktop, windows, runtime component tree, and the callback queue. See docs/NODE_API.md for the full method list.
  • Spec builders (src/builders.ts) — typed helpers that return ComponentSpec objects: VStack / HStack / Grid, Text / Label / Button / TextBox / Checkbox / RadioGroup / Slider / ProgressBar / ListBox / TableView, rich text (RichText / TextSpan / StyledLabel), MarkdownViewer, TabView, Splitter, chat builders, and more.
  • TypesComponentSpec, ComponentValue, TreeOp, Rect/RectLike, CallbackInvocation, and the AppHostConfig shape.

Native binary resolution order

@atto-ui/core searches for the native .node in this order:

  1. ATTO_UI_NATIVE_LIBRARY_PATH
  2. NAPI_RS_NATIVE_LIBRARY_PATH
  3. A local atto_ui_node.<platform>.node next to the package
  4. @atto-ui/core-<platform> / @atto-ui/node-<platform> optional packages
  5. @atto-ui/node
  6. The workspace fallback at crates/atto-ui-node (local development)

Docs