ecwid
v1.3.1
Published
ecwid
Downloads
8
Readme
node-ecwid
install
npm install ecwid
# or
yarn add ecwid
example
import {Ecwid} from "ecwid";
(async () => {
const accessToken = 'secret_xxx';
const storeId = 1;
const ecwid = new Ecwid(storeId, accessToken);
const storeProfile = (await ecwid.getStore()).unwrap();
console.log(storeProfile);
})();