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

@jsonstudio/wtermmod-core

v0.1.9

Published

Headless terminal emulator core for the web — WASM bridge and WebSocket transport

Readme

@jsonstudio/wtermmod-core

Headless terminal emulator core for wterm. Provides the WASM bridge and WebSocket transport — no DOM dependency.

Related Packages

| Package | Description | |---|---| | @jsonstudio/wtermmod-dom | DOM renderer, input handler — vanilla JS terminal | | @jsonstudio/wtermmod-react | React component + useTerminal hook | | @wterm/just-bash | In-browser Bash shell powered by just-bash | | @wterm/markdown | Streaming Markdown-to-ANSI renderer for terminals |

Install

npm install @jsonstudio/wtermmod-core

API

WasmBridge

Low-level interface to the Zig/WASM terminal state machine.

import { WasmBridge } from "@jsonstudio/wtermmod-core";

const bridge = await WasmBridge.load();
bridge.init(80, 24);
bridge.writeString("Hello, world!\r\n");

const cell = bridge.getCell(0, 0); // { char, fg, bg, flags, width }
const cursor = bridge.getCursor();  // { row, col, visible }

| Method | Description | |---|---| | WasmBridge.load(url?) | Load WASM binary and return a new bridge instance. Uses the embedded binary when no URL is given. | | init(cols, rows) | Initialize the terminal grid | | writeString(str) | Write a UTF-8 string to the terminal | | writeRaw(data: Uint8Array) | Write raw bytes to the terminal | | resize(cols, rows) | Resize the terminal grid | | getCell(row, col) | Get cell data ({ char, fg, bg, flags, width }) | | getCursor() | Get cursor state ({ row, col, visible }) | | getCols() / getRows() | Get current grid dimensions | | isDirtyRow(row) | Check if a row needs re-rendering | | clearDirty() | Reset all dirty-row flags | | getTitle() | Get pending title change (or null) | | getResponse() | Get pending host response (or null) | | getScrollbackCount() | Number of lines in the scrollback buffer | | getScrollbackCell(offset, col) | Get cell data from scrollback | | getScrollbackLineLen(offset) | Get length of a scrollback line | | cursorKeysApp() | Whether cursor keys are in application mode | | bracketedPaste() | Whether bracketed paste mode is active | | usingAltScreen() | Whether the alternate screen buffer is active |

WebSocketTransport

Connect to a PTY backend over WebSocket.

import { WebSocketTransport } from "@jsonstudio/wtermmod-core";

const ws = new WebSocketTransport({
  url: "ws://localhost:8080/pty",
  onData: (data) => { /* handle received data */ },
});

ws.connect();
ws.send("ls\n");

License

Apache-2.0