Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/3rd-eden/creditcard
Creditcard number parsing, validation and information extraction
https://github.com/3rd-eden/creditcard
creditcard cvv iec-7812 iso-7812 pan-truncation parsing validate
Last synced: about 1 month ago
JSON representation
Creditcard number parsing, validation and information extraction
- Host: GitHub
- URL: https://github.com/3rd-eden/creditcard
- Owner: 3rd-Eden
- License: mit
- Created: 2012-11-30T20:37:03.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2021-10-03T21:12:58.000Z (about 3 years ago)
- Last Synced: 2024-11-11T06:44:21.065Z (about 1 month ago)
- Topics: creditcard, cvv, iec-7812, iso-7812, pan-truncation, parsing, validate
- Language: JavaScript
- Size: 43 KB
- Stars: 65
- Watchers: 7
- Forks: 15
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Creditcard
Creditcard number parsing, validation and information extraction. The source
code has been commented using JSDoc and converted to documentation which can be
found in the `docs` folder.## Installation
The module is available in the NPM registry. It can be installed using the
`npm` command line utility.```
npm install --save creditcard
```Once you have installed the module you can simply require inside of your Node.js
application and use it's exported methods.```js
var creditcard = require('creditcard');creditcard.validate(4111111111111);
```## Documentation
The documentation of this module has been automatically generated from the
JSDocs that is used to comment the source code. It should give a clear
understanding of the methods that are available in this module and how it should
be used. The documentation can be found in the [**docs
folder**](https://github.com/3rd-Eden/creditcard/tree/master/docs)### License
[MIT](LICENSE)