1
0
mirror of https://github.com/kamyu1537/eamuse-card-wasm.git synced 2025-02-17 19:19:16 +01:00
eamuse-card-wasm/README.md
2020-10-15 16:42:21 +09:00

21 lines
355 B
Markdown

# eamuse-card-wasm
Convert e-amusement card ID and NFC ID to each other.
## Requirement
- go 1.14.2
- node.js
## Build
```shell script
npm install
npm run build
```
## Usage
```node
import KonamiCard from 'konami-card';
KonamiCard.encode(nfcId).then(result => console.info(result));
KonamiCard.decode(cardId).then(result => console.info(result));
```