-
Notifications
You must be signed in to change notification settings - Fork 78
Description
Description
rclnodejs generates a ReferenceError in the console log of ReactJS apps trying to use it. This error occurs simply by trying to call the init() function of the rclnodejs package (as per the typescript example in this project's README). Although the error message says is referencing the "process" package, manually installing "process" via npm does not resolve this error. The same behavior is seen with both Foxy and Humble versions of ROS2.
- Library Version: 0.22.2
- ROS Version: Foxy or Humble
- Platform / OS: Ubuntu 22.04.3 LTS (Jammy Jellyfish)
- NodeJS Version: 16.20.1
- npm Version: 8.19.4
Steps To Reproduce
npx create-remix
source /opt/ros/foxy/setup.bash
cd my-remix-app && npm install rclnodejs
- Modify
app/routes/_index.tsx
so thatimport * as rclnodejs from 'rclnodejs';
is located at the top of the fileimport { useEffect } from "react";
is located at the top of the fileuseEffect(() => { rclnodejs.init().then(() => { console.log("init"); }); }, []);
is located inside theIndex()
function
npm run dev
- Open web browser and navigate to
localhost:3000
- Open the browser's console log and refresh the page
Expected Behavior
Console Log contains the following log message:
init
Actual Behavior
Console Log contains the following error:
Uncaught ReferenceError: process is not defined
js bindings.js:23
__require2 chunk-PZDJHGND.js:18
js clock.js:17
__require2 chunk-PZDJHGND.js:18
js index.js:19
__require2 chunk-PZDJHGND.js:18
_index.tsx:23