mpp-sdk
v0.7.2
Published
SDK to talk to the Memento Payments Platform
Downloads
532
Keywords
Readme
Memento Payments SDK
Simplify your communication with the Memento Payments Platform.
Installation
Node.js
npm i mpp-sdk
Browser
<script src="https://unpkg.com/mpp-sdk/dist/mpp.bundle.min.js"></script>
Usage
Node.js
import { MPPSDK } from "mpp-sdk";
const config = {
host: "API_URL",
projectId: "YOUR_PROJECT_ID_HERE",
};
const mpp = new MPPSDK(config);
Browser
<script>
const mpp = new MPPSDK.MPPSDK(config);
// ...
</script>