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

@cascode/cascode-js

v0.7.3

Published

Synchronous Node binding for libcascode

Readme

@cascode/cascode-js

Synchronous Node binding for the Cascode native C ABI (libcascode).

This package exposes a thin N-API wrapper around the cascode_* exports from Cascode.Native and intentionally does not add threading or async behavior.

Install

npm install @cascode/cascode-js

Runtime Requirements

@cascode/cascode-js needs two native layers:

  1. Node addon (cascode_native_addon.node)
  2. Cascode shared library (libcascode.*)

At runtime the loader resolves in this order:

  1. Platform package (installed as an optional dependency):
    • @cascode/cascode-js-darwin-arm64
    • @cascode/cascode-js-darwin-x64
    • @cascode/cascode-js-linux-x64
    • @cascode/cascode-js-win32-x64
  2. Local build (editors/node/build/Release)
  3. Local native runtime discovery:
    • editors/node/native/<rid>/
    • <repo>/build/native/<rid>/

CASCODE_NATIVE_LIB always overrides discovered shared-library paths.

RID examples: win-x64, linux-x64, darwin-x64, darwin-arm64.

API

The package exports low-level session management and convenience wrappers for each native method.

const cascode = require("@cascode/cascode-js");

const session = cascode.createSession();
const doc = cascode.open(cascode.native, session, { path: "my_circuit.cas" });
const schematic = cascode.render(cascode.native, session, { documentId: doc.documentId });
cascode.destroySession(session);

Session lifecycle: createSession, destroySession, call, lastErrorJson, apiVersion, schemaVersion.

Document operations: open, updateText, close.

Schematic: render, applyOps.

Analysis: erc, emit, verify.

Jobs (long-running): jobStart, jobPoll, jobCancel.

stdlibPath provides the absolute path to the bundled standard library.

Build

cd editors/node
npm ci --omit=optional
npm run build

Test

Publish a native library first, then run tests:

dotnet publish tools/native/Cascode.Native/Cascode.Native.csproj \
  --configuration Release \
  -r linux-x64 \
  -p:PublishAot=true \
  -o build/native/linux-x64

export CASCODE_NATIVE_LIB="$PWD/build/native/linux-x64/Cascode.Native.so"
cd editors/node
npm test

Windows equivalent:

dotnet publish tools/native/Cascode.Native/Cascode.Native.csproj `
  --configuration Release `
  -r win-x64 `
  -p:PublishAot=true `
  -o build/native/win-x64

$env:CASCODE_NATIVE_LIB="$PWD\build\native\win-x64\Cascode.Native.dll"
cd editors\node
npm test