Skip to content

Latest commit

 

History

History
48 lines (35 loc) · 1.13 KB

README.md

File metadata and controls

48 lines (35 loc) · 1.13 KB

id5

国政通 NodeJS SDK

npm Travis branch Codecov branch David deps Known Vulnerabilities npm download

Installation

npm i id5 -S

Usage

const ID5 = require('id5');

const id5 = new ID5({
  username: 'runrioter',
  password: 'runrioterpsw',
  wsdlUrl: 'https://some.domain/someServices?wsdl',
  key: '87651234',
  iv: '87651234',
});

const matched = await id5.validateIDInfo('马冬梅', '21062419820628XXXX');

if (matched) {
  // ...
} else {
  // ...
}

Debug

Set DEBUG env variable to run your program.

DEBUG=id5 npm run <some-script>

LICENSE

MIT