node-pcsclite
node-pcsclite copied to clipboard
Bindings over pcsclite to access Smart Cards
Hello, thank you very much for this library. I have been running this library with electron for quite some time now. However, as I decided to update my version of...
Hello. Could you add a `getDeviceId()` function into `CardReader`? The device id is more important value when there are several card readers, each with its own purpose. OS can give...
I am not sure to love call backs so much. Sometimes a synchronous API is fine, especially when you want to send a sequence of APDU and have nothing better...
Works great in vanilla JS, but getting bindings.js errors when trying to use in a Vue.js project: _TypeError: Cannot read property 'modules' of undefined at Object.eval (bindings.js?dfc1:29) at eval (bindings.js:223)...
Update cflags include to use pkg-config if include directory is different then default /usr/include
We are using think package in an embedded rootfs and we are not able to build this package within Yocto recipe since the includes are from different. We can update...
To remove this deprecation warning (`DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead.`) of the example, I replaced `new...
I have installed pcsclite and when I run index.js file I got the following issue: > (node:5184) [DEP0005] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use...
I've exported the types and interfaces. So they can be imported, and used within a project. A reason for this, would be to type an array of CardReader. Which is...
Windows 7 x86 ``` reader.transmit(new Buffer([0x00, 0xB0, 0x00, 0x00, 0x20]), 200, protocol, function(err, data) { if (err) { console.log(err); } else { console.log('Data received', data); reader.close(); pcsc.close(); } }); ```...