Skip to content

Get Started

Sammwy edited this page Nov 29, 2021 · 1 revision

We can install the library using NPM or YARN.

npm install payflux
# OR
yarn add payflux

Then we can import it and instantiate the object passing its configuration object

// Javascript:
const Payflux = require ("payflux");
const payflux = new Payflux ({});

// EcmaScript / TypeScript
import Payflux from "payflux";
const payflux = new Payflux ({});
Clone this wiki locally