Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/graysonarts/node-proxid
https://github.com/graysonarts/node-proxid
Last synced: about 5 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/graysonarts/node-proxid
- Owner: graysonarts
- License: mit
- Created: 2015-02-07T20:18:11.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-03-06T04:02:12.000Z (over 9 years ago)
- Last Synced: 2024-11-01T00:36:28.053Z (7 days ago)
- Language: JavaScript
- Size: 148 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)
```