From a1b084069a1c6c7df8f41b42bdc4ba4ede472659 Mon Sep 17 00:00:00 2001 From: "ryan.chan" Date: Sun, 3 Nov 2019 08:02:24 +0800 Subject: [PATCH] update readme.md and npm version 1.0.0 --- README.md | 71 +++++++++++++++++++++++++++------------------------- package.json | 2 +- 2 files changed, 38 insertions(+), 35 deletions(-) diff --git a/README.md b/README.md index 404194a..72e728d 100644 --- a/README.md +++ b/README.md @@ -1,51 +1,54 @@ -## hk-fps -A Nodejs module that help to generate QR code content string of the Hong Kong Fast Payment System. +## node-hk-fps +A Nodejs module that help to generate QR code content string of the Hong Kong Faster Payment System. ## Installation Install with npm - - npm install node-fps-hk - +``` +npm install node-fps-hk +``` and in your code - - - var fps = require('node-fps-hk') +```javascript +var fps = require('node-fps-hk') +``` ## Usage - - //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"); +```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(); +``` - //generate qr content string - var qrContent = fps.generate(); - ## Example - - cd ./example - npm install - node index.js - +``` +cd ./example +npm install +node index.js +``` visit `http://localhost:8080` ## License -MIT +[MIT](https://github.com/ryanchanplc/node-fps-hk/blob/master/LICENSE) ## Useful Links -Please find the specification of the QR Code used in FPS : [https://fps.hkicl.com.hk/eng/fps/merchants/qr_code.php](https://fps.hkicl.com.hk/eng/fps/merchants/qr_code.php) +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) -The QR Code used the **CRC16 CCITT** check sum. Please find more details : [http://www.sunshine2k.de/articles/coding/crc/understanding_crc.html](http://www.sunshine2k.de/articles/coding/crc/understanding_crc.html) \ No newline at end of file +The QR Code content string used in FPS contains the **CRC16 CCITT** check sum. +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) \ No newline at end of file diff --git a/package.json b/package.json index cd02f8a..8edc46f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "node-fps-hk", - "version": "0.1.0", + "version": "1.0.0", "description": "A tool to generate the qrcode content string used by Fast Payment System in Hong Kong", "main": "index.js", "directories": {