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

@fiqch/n8n-nodes-fiq-opcua

v0.1.15

Published

n8n custom node for reading and writing OPC UA data (FactoryIQ)

Readme

CI codecov npm version GitHub release

n8n-nodes-fiq-opcua

FactoryIQ OPC UA Node for n8n

This n8n community node allows you to connect to OPC UA servers to read and write industrial data, supporting both secure and anonymous connections. Built and maintained by FactoryIQ.


🚀 Quick Start

Installation

Install as a standard n8n custom node package:

npm install @fiqch/n8n-nodes-fiq-opcua

For detailed instructions on installing community nodes in n8n, see the official n8n documentation: Install and manage community nodes

Usage

Import and use this custom node in your n8n instance. See the n8n documentation for details on using custom nodes.


Features

  • Read data from one or more OPC UA nodes
  • Write values to OPC UA nodes
  • Call OPC UA methods
  • Supports all standard OPC UA security policies and authentication modes

Configuration

Credentials

  • Endpoint URL: OPC UA server endpoint (e.g., opc.tcp://localhost:4840)
  • Security Policy: None, Basic128Rsa15, Basic256, Basic256Sha256, etc.
  • Security Mode: None, Sign, Sign & Encrypt
  • Authentication Type: Anonymous, Username/Password, X509 Certificate

Node Options

  • Mode: Reader or Writer
  • Node IDs: (Reader) List of node IDs to read
  • Operation: (Writer) Write Variable or Call Method
  • Node ID: (Writer) Node ID to write to
  • Value: (Writer) Value to write
  • Data Type: (Writer) Data type of the value
  • Object Node ID: (Writer, Call Method) Node ID of the object
  • Method Node ID: (Writer, Call Method) Node ID of the method
  • Parameters: (Writer, Call Method) Input arguments for the method

Architecture

This package includes a bundled and optimized OPC UA client implementation that provides:

  • No external dependencies - compliant with n8n verification guidelines
  • Full OPC UA client functionality - 1:1 feature parity with node-opcua
  • Efficient single bundle - ~7.7MB optimized bundle using ESBuild
  • All OPC UA data types - complete support for industrial protocols
  • Proper connection management - handles connect/disconnect lifecycle

Troubleshooting

  • The OPC UA client is bundled internally (no external dependencies)
  • For connection issues, verify your OPC UA server endpoint and security settings
  • Check that your security policy and authentication settings match your server configuration
  • All standard OPC UA data types and operations are supported

Development

  • Clone the repository
  • Install dependencies: npm install
  • Build: npm run build
  • Lint: npm run lint
  • Test: npm run test

Compatibility

| Package | Version | Link | |----------------|------------|-----------------------------------------------------------| | n8n | 1.95.3 | npm | | n8n-workflow | 1.82.0 | npm | | Node.js | 18.17.0 | nodejs.org | | Node.js (LTS) | 20.14.0 | nodejs.org | | Node.js (LTS) | 22.16.0 | nodejs.org |

  • This node is tested and supported on the above versions.
  • Using other versions may result in unexpected behavior.

Resources


License

MIT


Maintainer

FactoryIQ


Upgrading

To upgrade to a newer version of the OPC UA library:

npm install --save-dev node-opcua@^2.xxx.x
npm run vendor:bundle
npm run build && npm test

Acknowledgements

  • Portions of this package are derived from the open-source node-opcua project, which is licensed under the MIT License.