| ROS Distro* | Status |
|---|---|
| Rolling Kilted Jazzy Humble |
Note: Supported ROS 2 distributions include Humble, Jazzy, Kilted, and Rolling.
rclnodejs is a Node.js client library for ROS 2 that provides comprehensive JavaScript and TypeScript APIs for developing ROS 2 solutions.
const rclnodejs = require('rclnodejs');
rclnodejs.init().then(() => {
const node = new rclnodejs.Node('publisher_example_node');
const publisher = node.createPublisher('std_msgs/msg/String', 'topic');
publisher.publish(`Hello ROS 2 from rclnodejs`);
node.spin();
});This example assumes your ROS 2 environment is already sourced.
- Get started: Installation, Quick Start, Tutorials
- Reference: API Documentation, Using TypeScript, ROS 2 Interface Message Generation
- Features and examples: rclnodejs-cli, Electron-based Visualization, Observable Subscriptions, Performance Benchmarks
- Project docs: Efficient Usage Tips, FAQ and Known Issues, Building from Scratch, Contributing
Choose the path that matches how you plan to use rclnodejs:
- Install from npm: add rclnodejs to your own application.
- Quick Start: run the examples from this repository checkout.
Before installing, building, or running rclnodejs, source your ROS 2 environment:
source /opt/ros/<distro>/setup.bashUse this path if you want to depend on rclnodejs from your own ROS 2 Node.js application.
npm i rclnodejsAfter installation, use the example at the top of this README as a minimal publisher, or continue with Quick Start to run the examples in this repository.
Use this path only if you need a branch or commit that is not yet published to npm.
GitHub installs normally build from source. The published npm package includes prebuilt binaries for supported Linux targets, but this repository does not track those prebuilt artifacts.
npm install RobotWebTools/rclnodejs#<branch>Or add "rclnodejs":"RobotWebTools/rclnodejs#<branch>" to your package.json dependency section.
Docker: For containerized development, see the included Dockerfile for building and testing with different ROS distributions and Node.js versions.
See the features and try the examples to get started.
rclnodejs ships with prebuilt native binaries for common Linux configurations since v1.5.2, eliminating the need for compilation during installation. This applies to supported Linux environments when installing the published npm package.
Supported Platforms:
- Ubuntu 22.04 (Jammy) - ROS 2 Humble
- Ubuntu 24.04 (Noble) - ROS 2 Jazzy, Kilted
- Architectures: x64, arm64
- Node.js: >= 16.20.2 (N-API compatible)
Installations outside this prebuilt matrix automatically fall back to building from source.
Force Building from Source:
If you need to build from source even when a prebuilt binary is available, set the environment variable:
export RCLNODEJS_FORCE_BUILD=1
npm install rclnodejsUse these steps if you are working from this repository checkout and want to run one of the included examples.
These steps assume the installation prerequisites are already satisfied and your ROS 2 environment has been sourced.
- Install the repository dependencies from the project root.
npm install- Run a publisher example from this checkout.
node example/topics/publisher/publisher-example.jsYou should see messages being published once per second.
If you want to build an application instead of running the repository examples, install rclnodejs into your own project with Install from npm and start from the sample code near the top of this README.
Explore more runnable examples in example/ and step-by-step guides in tutorials/.
rclnodejs-cli is a separate companion project that provides command-line tooling for working with rclnodejs-based ROS 2 applications. It is particularly useful for creating ROS 2 Node.js packages and working with launch files for multi-node orchestration.
See the rclnodejs-cli repository for installation instructions and the current command set.
API documentation is available online. To generate it locally from this repository checkout, run npm run docs.
Create rich, interactive desktop applications using Electron and web technologies like Three.js. Demos leverage Electron Forge for easy packaging on Windows, macOS, and Linux.
| Demo | Description | Screenshot |
|---|---|---|
| 🐢 turtle_tf2 | Real-time coordinate frame visualization with turtle control. Features TF2 transforms, keyboard control, and dynamic frame updates. | ![]() |
| 🦾 manipulator | Interactive two-joint robotic arm simulation. Features 3D joint visualization, manual/automatic control, and visual movement markers. | ![]() |
Explore more examples in electron_demo.
TypeScript declaration files are included in the package and exposed through the types entry in package.json. In most projects, configuring your tsconfig.json is sufficient:
TypeScript example:
import * as rclnodejs from 'rclnodejs';
rclnodejs.init().then(() => {
const node = new rclnodejs.Node('publisher_example_node');
const publisher = node.createPublisher('std_msgs/msg/String', 'topic');
publisher.publish(`Hello ROS 2 from rclnodejs`);
node.spin();
});See TypeScript demos for more examples.
rclnodejs supports RxJS Observable subscriptions for reactive programming with ROS 2 messages. Use operators like throttleTime(), debounceTime(), map(), and combineLatest() to build declarative message processing pipelines.
const { throttleTime, map } = require('rxjs');
const obsSub = node.createObservableSubscription(
'sensor_msgs/msg/LaserScan',
'/scan'
);
obsSub.observable
.pipe(
throttleTime(200),
map((msg) => msg.ranges)
)
.subscribe((ranges) => console.log('Ranges:', ranges.length));See the Observable Subscriptions Tutorial for more details.
ROS client libraries convert IDL message descriptions into target language source code. rclnodejs provides the generate-ros-messages script to generate JavaScript message interface files and TypeScript declarations.
Example usage:
import * as rclnodejs from 'rclnodejs';
let stringMsgObject = rclnodejs.createMessageObject('std_msgs/msg/String');
stringMsgObject.data = 'hello world';Run the message generation script in your project when new ROS packages are installed:
npx generate-ros-messagesGenerated files are located at <yourproject>/node_modules/rclnodejs/generated/.
Note: This step is not needed for
rclnodejs > 1.5.0because bundled interfaces are generated during installation. Rerun this command only after adding new ROS packages to your environment.
In addition to the standard ROS2 message generation (.msg, .srv, and .action), rclnodejs provides advanced support for generating JavaScript message files directly from IDL (Interface Definition Language) files. This feature is particularly useful when working with custom IDL files or when you need more control over the message generation process.
To generate messages from IDL files, use the generate-messages-idl npm script:
npm run generate-messages-idlBenchmark results for 1000 iterations with 1024KB messages (Ubuntu 24.04.3 WSL2, i7-1185G7):
These numbers are workload- and environment-specific. See benchmark/README.md for the full setup and methodology.
| Library | Topic (ms) | Service (ms) |
|---|---|---|
| rclcpp (C++) | 168 | 627 |
| rclnodejs (Node.js) | 744 | 927 |
| rclpy (Python) | 1,618 | 15,380 |
Please read the Contributing Guide before making a pull request.
Thanks to all contributors!
This project abides by the Apache License 2.0.


{ "compilerOptions": { "module": "commonjs", "moduleResolution": "node", "target": "es2020", }, }