Node.js client for NATS, a lightweight, high-performance cloud native messaging system
npm install @nats-io/transport-nodeA Node.js transport for the NATS messaging system.

!transport-node


!NPM Downloads
!NPM Downloads
This module implements a Node.js native TCP transport for NATS. This library
re-exports NATS core library which implements all basic
NATS client functionality. This library is compatible with
Bun.
``bash`
npm install @nats-io/transport-nodeor
bun install @nats-io/transport-node
You can then import the connect function to connect using the node transport
like this:
`typescript`
import { connect } from "@nats-io/transport-node";
To use NATS JetStream, NATS KV,
NATS Object Store, or the
NATS Services functionality you'll need to install the
desired modules as described in each of the modules README files.
This module simply exports a
connect() function that
returns a NatsConnection` supported by a Nodejs TCP socket. This library
re-exports all the public APIs for the core module. Please
visit the core module for examples on how to use a connection or refer to the
JSDoc documentation.
Our support policy for Nodejs versions follows
Nodejs release support. We will support and
build node-nats on even-numbered Nodejs versions that are current or in LTS.