Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 3.62 KB

README.md

File metadata and controls

39 lines (27 loc) · 3.62 KB

Node wrapper for cryptomus

This module is a library for working with the Cryptomus API in a Node.js, written in TypeScript. Please note that this module is under development and is subject to change.

Warning

This is a beta prerelease

Features

  • Full typing for request and response to ensure secure development.
  • Web docs - click

Install

npm i git+https://github.com/ignaigna/cryptomus

Example

import { Cryptomus } from "@ignaigna/cryptomus";
import { v4 as uuid } from "uuid";

async function main() {
    const cryptomus = new Cryptomus("merchant", "payment-token");

    return cryptomus.createPayment({
        amount: "100",
        order_id: uuid(),
        currency: "USD"
    })
}

main().then(console.log);
Web docs
With ️❤ by qweme (and forked by igna)