updated readme

This commit is contained in:
Martin Endler
2016-08-10 21:03:22 +02:00
parent 8a595c193c
commit 14e83642ce

View File

@@ -1,7 +1,12 @@
# node-pcsclite
[![npm](https://img.shields.io/npm/v/@pokusew/pcsclite.svg?maxAge=2592000)](https://www.npmjs.com/package/@pokusew/pcsclite)
Bindings over pcsclite to access Smart Cards. Starting with version **0.4.0** it works in **Linux**, **OS X** and **Windows**.
> **Looking for library to work easy with NFC tags?**
take a look at [nfc-pcsc](https://github.com/pokusew/nfc-pcsc) which offers easy to use high level API for detecting / reading and writing NFC tags and cards
## Installation
In order to install the package you need to **have installed in the system the
@@ -10,13 +15,13 @@ pcsclite libraries**.
In **macOS** and **Windows** you **don't have to install** anything.
> For example, in Debian/Ubuntu:
```bash
apt-get install libpcsclite1 libpcsclite-dev
```
To run any code you will also need to have installed the pcsc daemon:
```bash
apt-get install pcscd
```
> ```bash
> apt-get install libpcsclite1 libpcsclite-dev
> ```
> To run any code you will also need to have installed the pcsc daemon:
> ```bash
> apt-get install pcscd
> ```
Once you have all needed libraries, you can install using npm:
@@ -24,8 +29,6 @@ Once you have all needed libraries, you can install using npm:
npm install @pokusew/pcsclite --save
```
## Example
```javascript