Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/graysonarts/node-proxid


https://github.com/graysonarts/node-proxid

Last synced: about 5 hours ago
JSON representation

Awesome Lists containing this project

README

        

# Node-ProxId

[![Codeship Status for RussTheAerialist/node-proxid](https://codeship.com/projects/d40c6000-a5e2-0132-f089-42192025a880/status?branch=master)](https://codeship.com/projects/66873)[![NPm Dependencies](https://david-dm.org/RussTheAerialist/node-proxid.svg)](http://npmjs.com/package/proxid)

A stream-based proximity card reader interface.

It is a translation layer between existing rfid/proximity card libraries, and a
common stream interface.

It also provides an interface to the sparkfun USB RFID reader which is a
line-oriented card reader.

## Example

```javascript
var ProxIdStream = require('./lib/proxid')

var p = new ProxIdStream({
port: '/dev/tty.usbserial-A5026PIE',
baudrate: 9600,
source: 'sparkfun'
})

p.pipe(process.stdout)
```