mpx-client
v0.0.25
Published
mpx api wrapper
Keywords
Readme
Usage
// your credentials
const config = {
username: "[email protected]",
password: "secretPassoword",
accountId: "1234",
tld: "com",
}
import { Client, Program } from mpx-client;
const client = new Client(config);
const program = new Program({ client })
program.get({params: byId: 1234})
.then(data => console.log(data))
.cache(err => console.error(err))
