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

@nanobpm/nano-ide-lang-node

v1.2.0

Published

Node.js/TypeScript language pack for the Nano RAD IDE: .ts/.js grammar, a Node toolchain (run on `node --experimental-strip-types`, typecheck with `tsc`), and a Camunda 8 client starter that uses the official @camunda8/orchestration-cluster-api SDK. Lets

Readme

@nanobpm/nano-ide-lang-node

A Node.js / TypeScript language pack for the Nano RAD IDE.

It adds a first-class TypeScript/JavaScript authoring experience that runs on the local Node runtime — no Deno required. This matters on hosts where Deno has no build, most notably 32-bit ARM (Raspberry Pi 2B and friends): Node ships an official linux-armv7l binary (and the c8ctl npm launcher is Node), so JS/TS workers run there even though Deno cannot.

Nano's built-in TypeScript runtime is Deno, and it already falls back to Node transparently when Deno is absent (ADR 0036). This pack is the explicit, npm-native alternative: a real package.json + tsconfig.json project using the official Camunda 8 JS SDK, with a Node toolchain the console drives directly — parallel to the lang-python and lang-rust packs.

What it contributes

  • File types: .ts, .mts, .js, .mjs (Monaco's built-in TypeScript language service provides completion/hover/signature help — no extra IntelliSense payload is shipped).
  • Toolchain:
    • Runnpm startnode --experimental-strip-types --no-warnings main.ts (runs .ts directly; requires Node ≥ 22.6).
    • Compile / typechecknpm run typechecktsc --noEmit.
    • Both npm scripts have an npm install pre-hook, so dependencies are fetched automatically on first Run/Typecheck (like uv run / cargo run).
  • Starter template (node-starter): a complete, runnable Camunda 8 app on the official @camunda8/orchestration-cluster-api SDK — connect, deploy a BPMN, register a hello job worker, create an instance. Against a Nano gateway the SDK transparently upgrades to the command-stream / Falcon transport; the same code runs on plain REST against stock Camunda 8.

Requirements

  • Node ≥ 22.6 on the host (for --experimental-strip-types, built-in WebSocket, and node:sqlite). Older Node is treated as absent.

Install

Install it as a Nano IDE extension pack (the console's Extensions view), or add it to a project's pack set. The console reads nano-ide.ext.json and surfaces the language + starter template.

Licence

Apache-2.0.