Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 520 Bytes

README.md

File metadata and controls

28 lines (20 loc) · 520 Bytes

vindi-js

A client to make easy connect with vindi payment gateway.

To use this library, you MUST:

  • Have an active account on Vindi;
  • Have a valid API Key;

To install, run:

$ npm i --save vindi-js

To use:

var Vindi = require('vindi-js');

var client = new Vindi('YOURAPIKEY');

To Sandbox:

var Vindi = require('vindi-js');

var client = new Vindi('YOURAPIKEY', { production: false });

To start I recommend you this article.