zytejs
v1.0.1
Published
A api library for the Zyte Cloud API
Downloads
2
Readme
zytejs
A api library for the Zyte Cloud API
const { Zyte } = require("zytejs");
const z = new Zyte({
token: "",
uri: "http://localhost:3000",
});
(async function() {
const getOk = z.ok();
const ok = await getOk();
console.log(ok)
// Result: { status: 200, message: 'Ok', data: null }
})();