William Bello
William Bello

Reputation: 292

cannot install serialport module nodejs v0.13.0-pre

I'm trying to use the SerialPort module for serial communication between my udoo and the built in arduino.

The problem is that the the module doesn't install. I wanted to upload the photo with the error but I couldn't because I do not have not enough reputation. But I did upload the photo to my Dropbox and this is the link Error Screenshot I've already check in my other udoo with nodejs version v0.12.0 and another one with v.0.10.35. And is not working, the mayor common problem is related to

child_process: customFds option is deprecated, use stdio instead.

Upvotes: 0

Views: 314

Answers (1)

mscdex
mscdex

Reputation: 106746

The error is fairly clear: Error: "pre" versions of node cannot be installed. Install a released version of node (e.g. node v0.12) instead and then npm install serialport.

Upvotes: 1

Related Questions