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

acryl-development-canvas

v0.1.3

Published

Standalone Cordis Development Canvas plugin for ACRYL

Downloads

653

Readme

ACRYL Development Canvas

acryl-development-canvas is a standalone Host and Client Cordis plugin for the ACRYL Development Canvas. It adds a workspace canvas to compatible Desktop profiles, with terminal-backed tiles, file tiles, browser tiles, and a Client contribution to the desktop.main slot.

Install

dsh plugin --profile desktop add acryl-development-canvas

The package declares both a DSH bundle patch and an acryl-package manifest, so it is discoverable through the ACRYL package catalog as well as normal DSH plugin installation.

What it owns

  • The Host owns loopback PTY routes and every PTY process it starts.
  • The Client owns its Desktop slot contribution, xterm clients, injected styles, and browser-side cleanup.
  • Removing the Loader row unregisters routes, closes PTYs, removes the Canvas contribution, and restores the default conversation surface.

Engineering principles

  • Dependency inversion and separated interfaces. The Host consumes the normal webServer capability; the Client consumes slots. Neither imports a concrete Desktop bootstrap or creates another plugin runtime.
  • One owner for live resources. Routes, PTYs, subscriptions, styles, and slot registrations are acquired inside their owning Cordis effects and disposed with their Fibers.
  • Reversible composition. The stable Loader row controls the capability. Disable, unload, or replacement removes only Canvas contributions.
  • Orthogonality and information hiding. Host process control and Client presentation remain separate; PTY transport does not become canonical agent history or a global application service.
  • Fail fast and contain failure. A non-loopback Host is rejected before routes mount, and partial route activation rolls back registrations.
  • YAGNI. The package uses the existing DSH/Cordis Host, Client, slot, and Loader seams instead of creating another PTY registry, event bus, or lifecycle system.
  • Refactor-safe behavior. Tests exercise activation, route rollback, PTY disposal, Client cleanup, slot replacement, and repeated lifecycle use.

Package compatibility

The Host requires a loopback DSH webServer. The Client is intended for a profile that declares the desktop.main slot. When that slot is absent, the Client leaves the profile untouched.

Provenance

This package is a copy-only extraction from the ACRYL workspace. The source package remains in the main repository. See provenance.json for the source boundary and docs/PLAN.md for the Cordis lifecycle design.