node-fps-hk/README.md

60 lines
1.6 KiB
Markdown
Raw Permalink Normal View History

2019-10-28 05:59:20 +00:00
2019-11-03 00:02:24 +00:00
## node-hk-fps
2019-11-18 06:59:15 +00:00
A Nodejs module that help to generate QR code content string of the Hong Kong Faster Payment System. Please refer the [blog](https://medium.com/@ryanchanplc/understanding-the-qr-code-used-in-hong-kong-faster-payment-system-6cc1671405d2)
2019-10-28 05:59:20 +00:00
2020-10-20 06:56:42 +00:00
**NOTE: this package only support FPS ID (MerchantID), it doesnt support mobile number / email as recipient identifier. The mobile number is just a field in Additional Data in CommonQR Code Specification.**
2019-10-28 05:59:20 +00:00
## Installation
Install with npm
2019-11-03 00:02:24 +00:00
```
npm install node-fps-hk
```
2019-10-28 05:59:20 +00:00
and in your code
2019-11-03 00:02:24 +00:00
```javascript
var fps = require('node-fps-hk')
```
2019-10-28 05:59:20 +00:00
## Usage
2019-11-03 00:02:24 +00:00
```javascript
//import module
var fps = require('node-fps-hk')
// set custom variables
fps.setMerchantID("0000001");
fps.setBillNumber("0002");
fps.setStoreLabel("0003");
fps.setLoyaltyNumber("0004");
fps.setCustomerLabel("0005");
fps.setTerminalLabel("0006");
fps.setPurposeOfTransaction("0007");
fps.setMobileNumber("12345678");
fps.setTransactionAmount("5000");
fps.setReferenceLabel("ABCD");
//generate qr content string
var qrContent = fps.generate();
```
2019-10-28 05:59:20 +00:00
2019-11-03 00:02:24 +00:00
## Example
```
cd ./example
npm install
node index.js
```
2019-10-28 05:59:20 +00:00
visit `http://localhost:8080`
## License
2019-11-03 00:02:24 +00:00
[MIT](https://github.com/ryanchanplc/node-fps-hk/blob/master/LICENSE)
2019-10-28 05:59:20 +00:00
## Useful Links
2019-11-03 00:02:24 +00:00
Please find the specification of the QR Code used in FPS at:
[https://fps.hkicl.com.hk/eng/fps/merchants/qr_code.php](https://fps.hkicl.com.hk/eng/fps/merchants/qr_code.php)
2019-10-28 05:59:20 +00:00
2019-11-03 00:02:24 +00:00
The QR Code content string used in FPS contains the **CRC16 CCITT** check sum.
2019-11-18 06:59:15 +00:00
Please find more details at: [http://www.sunshine2k.de/articles/coding/crc/understanding_crc.html](http://www.sunshine2k.de/articles/coding/crc/understanding_crc.html)