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

pamoja

v0.1.18

Published

The whole pamoja framework in one package: every capability of one memory-safe Rust core, behind an idiomatic TypeScript facade, for IoT, robotics, and drones.

Readme

pamoja

The whole pamoja framework in one package: every capability of one memory-safe Rust core, behind an idiomatic TypeScript facade, for IoT, robotics, and drones. Each capability is also its own package, so an application that needs one thing can depend on @pamoja/mqtt alone; this package depends on all of them and re-exports them.

documentation API reference

Install

npm install pamoja

What it bundles

Each package name opens its reference.

| Package | What it covers | | --- | --- | | @pamoja/core | The embedded-hal traits every driver takes, a bit-banged 1-Wire bus, scripted buses that play a part's side of a conversation, and the Linux backends over i2c-dev, spidev, and the GPIO character device | | @pamoja/core | A sensor and an actuator pamoja has never heard of, written against the core traits, run against a rule, and published with nothing plugged in | | @pamoja/core | The transport every link shares (send, receive, subscribe, and a faulty wrapper for tests) and the runtime version | | @pamoja/core | A link pamoja does not ship, written in your language against the transport contract and composed like any other | | @pamoja/security | ed25519 device identity: sign a reading and verify it, so a gateway can prove it is authentic | | @pamoja/codec | CBOR, JSON, and raw codecs behind one trait, delta and varint batch packing, and an f32 quantizer for metered links | | @pamoja/kit | Plain-language helper math: smoothing, calibration, PID and thermostat control, a trigger with hysteresis, trend and surge prediction, rolling windows, kinematics, and geo | | @pamoja/serial | SLIP and COBS byte stuffing with streaming decoders, so a UART byte stream carries discrete packets | | @pamoja/modbus | Modbus RTU requests and replies with CRC-16/MODBUS for RS485 field devices | | @pamoja/can | CAN 2.0 and CAN-FD frames with 11- and 29-bit identifiers, plus J1939 decode and compose | | @pamoja/gpio | I2C address frames with reserved-range checks, the four SPI clock modes, and active-high or active-low pins | | @pamoja/sensors | Datasheet-anchored decoders for eleven parts: the BME280, BMP280, DS18B20, HDC1080, INA219, INA226, ADS1115, OPT3001, SCD4x, SHT3x, and TMP117 | | @pamoja/actuators | PCA9685 PWM and servo pulses, and stepper coil sequencing | | @pamoja/lora | Time-on-air, duty-cycle off-time, and the regional channel plans a LoRa node must keep to | | @pamoja/lorawan | LoRaWAN 1.0.x MAC framing, AES-CMAC and AES encryption, and both halves of the OTAA join | | @pamoja/mesh | Addressed, hop-limited, CRC-checked frames and duplicate suppression that floods a packet exactly once | | @pamoja/routing | Reverse-path routing that learns the cheapest route from overheard traffic | | @pamoja/mavlink | MAVLink v1 and v2 framing, signing, named message fields, and the mission, command, and offboard protocols | | @pamoja/audit | A tamper-evident, hash-chained log; altering, reordering, or dropping a record breaks verification | | @pamoja/session | X25519 key agreement, HKDF, and ChaCha20-Poly1305 with an anti-replay window, with no TLS stack | | @pamoja/update | Signed firmware manifests, streaming image verification, and A/B slots that fall back on their own | | @pamoja/power | Duty cycling and an energy-aware governor that stretches work as the battery drains | | @pamoja/telemetry | Observability that ships only what is worth the bytes as link cost rises, while counting everything | | @pamoja/mqtt | An MQTT client with the topic and wildcard rules, as the core transport | | @pamoja/coap | A CoAP client over UDP with confirmable delivery and observe | | @pamoja/loopback | An in-process transport with topic matching and a fault injector, for testing with no broker | | @pamoja/sync | Offline-first queues: in memory, and a crash-safe on-disk queue that survives power loss | | @pamoja/ladder | Cheapest reachable link first, buffering to a store when every link is down | | @pamoja/bus | An in-memory typed publish and subscribe event bus | | @pamoja/sim | Noisy and replay sensors, a recording actuator, and a simulated robot that dead-reckons its pose | | @pamoja/profile | Named, ready-to-run device profiles from plain data or a JSON manifest | | @pamoja/kit | Rules between nodes as a file: a condition over one node's topic with hysteresis, and the actions that drive another node's actuator or publish, run by an engine off any link | | @pamoja/ros2 | ROS 2 names, RIHS01 type hashes, CDR encoding, and rmw_zenoh key assembly, with no ROS 2 installed | | @pamoja/zenoh | Zenoh key expressions: validity, canonical form, and wildcard matching |

All of them run on @pamoja/native, the compiled engine, which is one binary whichever packages you install.

Documentation

License

MIT