jperkin/node-rpio

Bindings.js Error

plezhh opened this issue · 2 comments

Hello,

I have an application with two folders, backend and src, with individuals node_modules folder.

If I require the rpio library in backend all works good.

If I try to require it in src, with npm run build && npm start, I get a blank white page, with the following errors in console:

image

Could you help me with some ideas?

Thanks!

The rpio library is designed to be used on the backend only. For use with the GPIO pins. The frontend which loads into a web browser does not have access to a the GPIO pins. If you want to connect the frontend to the backend, the best way to do this is by an Ajax requests to a backend method that handles the GPIO I/O.

Ohhh, so that's the problem. Thank you very much!