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

@flyingrobots/bijou-tui-app

v4.0.0

Published

Batteries-included TUI app skeleton built on bijou-tui createFramedApp().

Readme

@flyingrobots/bijou-tui-app

Batteries-included TUI app skeleton built on createFramedApp().

What's New in v3.0.0

  • Pure shell contract — framed panes now stay on the surface/layout path. Shell panes render Surface or LayoutNode, not string views.
  • Truthful shell role — this package is the opinionated shell layer in the Bijou stack, not the whole runtime. Use it when you want tabs, footer/help chrome, overlays, and a ready-to-run app frame.
  • Canonical release starter — the scaffolder and V3 examples now treat this package as the default way to stand up a polished full-screen Bijou app.

It ships a ready-to-run shell with sane defaults:

  • full-screen framed app shell
  • top tab bar (| separators, active/inactive tab backgrounds)
  • animated supplemental drawer on the first tab (o toggles)
  • page switching via [ and ]
  • quit confirmation modal on q and ctrl+c
  • two-line footer: status line above controls line
  • full-width \ separator row above the footer
  • default two tabs:
    • tab 1: primary pane + supplemental drawer
    • tab 2: horizontal split for compare/inspect flows

When To Use It

Use @flyingrobots/bijou-tui-app when:

  • your app has peer destinations that belong in tabs
  • you want standardized shell chrome, help, status, and command discovery
  • side work should live in a drawer instead of stealing the whole screen
  • destructive exit or review flows should be handled by a modal

Avoid it when:

  • you are building a one-shot CLI or prompt flow
  • the UI is basically one document and does not need shell chrome
  • you want a fully custom shell instead of adopting Bijou's opinionated starter

Design-System Role

The starter is intentionally opinionated:

  • tabs are for peer destinations
  • the drawer is for supplemental side work, filters, inspection, and context
  • the quit modal is for blocking confirmation
  • the footer rows are shell chrome, not page content
  • the split page demonstrates comparison and secondary-context layout, not generic filler

Quick Scaffold

npm create bijou-tui-app@latest my-app

Install

npm install @flyingrobots/bijou @flyingrobots/bijou-node @flyingrobots/bijou-tui @flyingrobots/bijou-tui-app

Usage

import { initDefaultContext } from '@flyingrobots/bijou-node';
import { run } from '@flyingrobots/bijou-tui';
import { createTuiAppSkeleton } from '@flyingrobots/bijou-tui-app';

const ctx = initDefaultContext();

await run(
  createTuiAppSkeleton({
    ctx,
    title: 'FlyingRobots Console',
    statusMessage: ({ activeTabTitle }) => `${activeTabTitle} ready`,
  }),
  { mouse: true },
);

API

  • createTuiAppSkeleton(options)
    • ctx (required): BijouContext
    • tabs (optional): custom { id, title }[]; defaults to Home + Split
    • defaultTabId: initial active tab
    • title: header title
    • keyLegend: footer controls-line legend
    • statusMessage: footer status-line content (string or function by active tab)
    • themeTokens: override header/tab/footer/separator/drawer/modal tokens
    • globalKeys: additional key bindings merged with defaults

Built-in defaults

  • Frame keys: [ / ] tab switch, tab pane next, shift+tab pane prev, ctrl+p command palette, ? help
  • Skeleton keys: o drawer toggle, q/ctrl+c quit confirm, y/enter confirm quit, n/escape cancel quit

For upgrading an existing shell-based app, see ../../docs/MIGRATING_TO_V4.md.