npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@privageapp/thai-national-id-reader

v1.0.4

Published

Thai Personal ID Card reader for NodeJS (PCSClite)

Downloads

26

Readme

thai-national-id-reader

Thai National ID card reader for nodeJS.

npm version MIT

Credits. ADPU Command from ThaiNationalIDCard and HexString convertion from thai-smartcard-reader

Installation

Using npm

$ npm install --save @privageapp/thai-national-id-reader

Using yarn

$ yarn add @privageapp/thai-national-id-reader

Example

const { ThaiCardReader, EVENTS, MODE } = require('@privageapp/thai-national-id-reader')

const reader = new ThaiCardReader()
reader.readMode = MODE.PERSONAL_PHOTO
reader.autoRecreate = true
reader.startListener()

reader.on(EVENTS.READING_COMPLETE, (obj) => {
  console.log(obj)
})

API

EVENTS

The ThaiCardReader object emits the following events

Event: PCSC_INITIAL

Emitted when a listener is started.

Event: PCSC_CLOSE

Emitted when a PCSC device is detached.

Event: DEVICE_WAITING

Emitted when a smart card reader is disconnected from host. (Only auto re-create is set to true).

Event: DEVICE_CONNECTED

Emitted when a smart card reader is ready to read.

Event: DEVICE_ERROR

Emitted when a smart card reader is error.

Event: DEVICE_DISCONNECTED

Emitted when a smart card reader is detached from host.

Event: CARD_INSERTED

Emitted when a smart card is inserted.

Event: CARD_REMOVED

Emitted when a smart card is removed.

Event: READING_INIT

Emitted when a device prepare to reading data.

Event: READING_START

Emitted when a device start to reading data.

Event: READING_PROGRESS

Emitted while a device reading data. This event return progress. Returns Object:

{ 
  step: 1, // Current reading segment
  of: 25, // All segment
  message: '' // Section name
}
Event: READING_COMPLETE

Emitted when a device finish reading data. Returns Object:

{ 
  citizenId: '1999999999999',
  titleTH: 'นาย',
  firstNameTH: '',
  lastNameTH: '',
  titleEN: 'Mr.',
  firstNameEN: '',
  lastNameEN: '',
  birthday: '1900-01-01',
  gender: 'male',
  address: 'address',
  issue: '2000-01-01',
  expire: '2010-01-01',
  photo: 'data:image/jpeg;....'
}
Event: READING_FAIL

Emitted when reading data fail

MODE

Mode: PERSONAL

Read only personal data

Mode: PERSONAL_PHOTO

Read both personal data and photo

License

You can use for free with MIT License