0.0.24 • Published 4 years ago

avify-client v0.0.24

Weekly downloads
-
License
ISC
Repository
github
Last release
4 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

4 years ago

0.0.23

4 years ago

0.0.22

4 years ago

0.0.21

4 years ago

0.0.20

4 years ago

0.0.19

4 years ago

0.0.18

4 years ago

0.0.17

4 years ago

0.0.16

4 years ago

0.0.15

4 years ago

0.0.14

4 years ago

0.0.13

4 years ago

0.0.12

4 years ago

0.0.11

4 years ago

0.0.10

4 years ago

0.0.9

4 years ago