An improved node.js package to read tags over the MFRC522 Reader
npm install rfidread-mfrc522##Changelog
###v1.0.1
```
- removed the delay between scanning the same card
npm install rfidRead-MFRC522
`Sample
`
var mfrc522 = require("rfidRead-MFRC522");var Callback = function(){
this.onStart = function(){
console.log('onStart');
};
this.onUid = function(uid){
console.log('onUid');
console.log(uid);
};
this.onExit = function(){
console.log('onExit');
};
};
mfrc522.start( new Callback() );
``