$ npm install @wix/sdk $ npm install @wix/data $ npm install @wix/sdk $ npm install @wix/stores $ npm install @wix/sdk $ npm install @wix/stores $ npm install @wix/data import { items } from '@wix/data'; import { createClient, OAuthStrategy } from '@wix/sdk'; //To access the Wix APIs, create a client with the createClient() function imported from the @wix/sdk package. const myWixClient = createClient({ modules: { items }, auth: OAuthStrategy({ clientId: '6ddcffb0-9777-412e-a303-1935e55b5c7b' }), }); const dataItemsList = await myWixClient.items.query({ "dataCollectionId": "Forms/subscribers073" }).find(); console.log('My Data Items:'); console.log('Total: ', dataItemsList.items.length); console.log(dataItemsList.items .map((item) => item.data._id) .join('\n') ); import { products } from '@wix/stores'; import { createClient, OAuthStrategy } from '@wix/sdk'; //To access the Wix APIs, create a client with the createClient() function imported from the @wix/sdk package. const myWixClient = createClient({ modules: { products }, auth: OAuthStrategy({ clientId: '6ddcffb0-9777-412e-a303-1935e55b5c7b' }), }); const productList = await myWixClient.products.queryProducts().find(); console.log('My Products:'); console.log('Total: ', productList.items.length); console.log(productList.items .map((item) => item.name) .join('\n') );
top of page

All Products

NOTIFY ME WHEN AVAILABLE and PRE-ORDER are available for all NEW products and items out of stock. Please click on the item to find the 'Notify Me' button or should you prefer to jump to the front of the queue by PRE-ORDERING, please note the 'Contact us' link in the [Additional Items Field]. Thank you.
NOTIFY ME WHEN AVAILABLE and PRE-ORDER are available for all NEW products and items out of stock. Please click on the item to find the 'Notify Me' button or should you prefer to jump to the front of the queue by PRE-ORDERING, please note the 'Contact us' link in the [Additional Items Field]. Thank you.
bottom of page
$ npm install @wix/sdk $ npm install @wix/stores