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

@synefex/node-red-lads

v1.0.0

Published

Node-RED nodes for LADS lab devices. Persistent OPC UA session, browse-based picker, full action set (read, write, call method, drive state machine).

Readme

@synefex/node-red-lads

Node-RED nodes for LADS lab devices. LADS (Laboratory and Analytical Device Standard) is the OPC UA companion spec for lab instruments. One persistent session per connection, an editor-side picker that browses the device tree, and four action nodes covering read, write, method call, and state-machine operate.

npm version License: Apache-2.0

Install

In your Node-RED userDir (typically ~/.node-red/):

npm install @synefex/node-red-lads

Restart Node-RED. Five new nodes appear in the palette under the Synefex LADS section.

Nodes

| Node | Purpose | |---|---| | lads-connection | LADS server connection, persistent session, auto-reconnect. Config node. | | lads-read-value | Read the Value attribute of a node. | | lads-write-value | Write a value with explicit data-type encoding. | | lads-call-method | Call a method with input args and decoded outputs. | | lads-operate | Drive the LADS FunctionalUnitState machine (Start, Stop, Abort, Hold, Resume, ...). |

Quick start

  1. Drop a LADS connection config node, point it at your server's endpoint (opc.tcp://host:port), and pick the right security mode/policy + auth combination for your server.
  2. Wire an inject -> LADS read -> debug flow.
  3. Open the LADS read node. The picker (cascading dropdowns above the manual NodeId field) lets you browse Device -> Functional Unit -> Function -> Variable. Pick the variable you want.
  4. Deploy and click inject. payload becomes the decoded value.

Picker

Open any LADS action node in the editor and the picker shows up above the manual fields:

  • Device -- top-level LADS device (browsed from the connection)
  • Functional Unit -- subsystem within a device (e.g. WeighingSensor)
  • Function -- behavior within an FU (e.g. CurrentValue)
  • Variable / Method -- the leaf you actually pick

The picker resolves to a NodeId and writes it into the manual NodeId field; the symbolic browse path is stored alongside for re-edit restoration. Picking writable variables also auto-fills the Data type dropdown on the write node.

Security

For lab devices on a trusted network, None / None / Anonymous is usually enough. Switch to Sign or Sign & Encrypt with a matching policy when the server requires it. Validated combinations:

  • None / None / Anonymous
  • Sign / Basic256Sha256 / Anonymous
  • SignAndEncrypt / Basic256Sha256 / Anonymous
  • SignAndEncrypt / Aes128_Sha256_RsaOaep / Anonymous
  • SignAndEncrypt / Aes256_Sha256_RsaPss / Anonymous
  • (and Username/Password variants of all of the above)

The first time a secured connection is attempted, a self-signed client certificate is generated under <userDir>/lads-pki/own/certs/. The server administrator may need to add it to the server's trust list before the connection succeeds, or you can flip on Auto-trust server certificate for lab/testing.

License

Apache License, Version 2.0. See LICENSE and NOTICE.