node-shopify
v5.7.0
Published
module for creating Shopify API calls
Downloads
8
Readme
node-shopify
module for creating Shopify API calls
install dependencies
yarn install
# or
npm install
build
yarn run build
# or
npm run build
example
import {Shopify} from 'node-shopify';
(async () => {
const accessLogin = 'xxx';
const accessPassword = 'shpat_yyy';
const url = 'example.myshopify.com'
const shopify = new Shopify(`https://${accessLogin}:${accessToken}@${url}`, 5000);
//
const products = (await shopify.getProducts()).unwrap();
})();