0.0.24 • Published 2 years ago

avify-client v0.0.24

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

Avify Javascript Client Library

Avify Logo

NPM Downloads GitHub issues open

INSTALLATION

npm i avify-client

USAGE

  • Javascript
const Avify = require('avify-client');
const avify = new Avify({ mode: 'sandbox', version: 'v1' });
avify.checkout({
    cardHolder: 'John Doe',
    cvc: '248',
    expMonth: '06',
    expYear: '2023',
    carcNumber: '2424242424242424',
})
.then((res) => {
	console.log(res.data);
});
  • Typescript
import Avify from 'avify-client';
const avify = new Avify({ mode: 'sandbox', version: 'v1' });
avify.checkout({
    cardHolder: 'John Doe',
    cvc: '248',
    expMonth: '06',
    expYear: '2023',
    carcNumber: '2424242424242424',
})
.then((res) => {
	console.log(res.data);
});

TODO

  • Modify test scripts
0.0.24

2 years ago

0.0.23

2 years ago

0.0.22

2 years ago

0.0.21

2 years ago

0.0.20

2 years ago

0.0.19

3 years ago

0.0.18

3 years ago

0.0.17

3 years ago

0.0.16

3 years ago

0.0.15

3 years ago

0.0.14

3 years ago

0.0.13

3 years ago

0.0.12

3 years ago

0.0.11

3 years ago

0.0.10

3 years ago

0.0.9

3 years ago