Skip to content

nathan7/serialport-stream

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

serialport-stream

Serial ports as streams.

Installation

npm install serialport-stream

API

new Serial(port = '/dev/ttyS0', baud = 115200)

Returns a new serial duplex stream.

serial.close()

Close the port.

event 'open'

Emitted when the port is opened. Unlike with node-serialport, you don't need to wait for this event to start reading or writing. Streams all the way.

Compatibility

This is currently implemented with a POSIX-only native binding. If you'd want to implement Windows compat, that'd rock.