Returns json data about the client's payins from the most recent to the oldest.
-
URL
BETA :
apibeta.koalect.com/openapi/payins
Production :
api.koalect.com/openapi/payins
// Dependencies : | |
// npm i download jsdom walk replaceall | |
const path = require('path') | |
const fsp = require('fs').promises | |
const download = require('download') | |
const walk = require('walk') | |
const replaceAll = require("replaceall"); | |
const { JSDOM } = require('jsdom') |
# You need imagemagick to have the "convert" command available | |
# Debian based distros => sudo apt-get install imagemagick | |
# Example command usage : | |
# $ web_resize coffee.jpg 320 1024 1980 | |
# Will create : | |
# - coffee-320.jpg | |
# - coffee-1024.jpg | |
# - coffee-1980.jpg |