forked from node-webrtc/node-webrtc
-
Notifications
You must be signed in to change notification settings - Fork 24
Open
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers
Description
Description
Getting this error after a project using the library is built with yarn build and executed with node index.js
Error: Could not find wrtc binary on any of the paths: ../build-linux-arm64/wrtc.node,../build-linux-arm64/Debug/wrtc.node,../build-linux-arm64/Release/wrtc.node,@roamhq/wrtc-linux-arm64,./node_modules/@roamhq/wrtc-linux-arm64,./node_modules/@roamhq/wrtc-linux-arm64/wrtc.nodeCauses
The lines over here seem a bit obvious as there are no node_modules dirs in the current directory; it should be ../node_modules instead.
Suggestion
File: binding.js
- `./node_modules/@roamhq/wrtc-${triple}`,
- `./node_modules/@roamhq/wrtc-${triple}/wrtc.node`,
+ `../node_modules/@roamhq/wrtc-${triple}`,
+ `../node_modules/@roamhq/wrtc-${triple}/wrtc.node`,Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers
