UNPKG

shopify-product-scraper

Version:

A lightweight JavaScript library for scraping products from Shopify stores. This package provides a simple and efficient way to extract product data from Shopify websites.

17 lines (15 loc) 402 B
const shopifyIndicators = [ /shopify\.com/i, /cdn\.shopify\.com/i, /Shopify\.Buy\.SDK/i, /var Shopify =/i, /{{ '.*' | asset_url }}/i, ] export async function isValidURL(url: string): Promise<boolean> { try { const html = await fetch(url).then((res) => res.text()); return shopifyIndicators.some((pattern) => pattern.test(html)); } catch { return false; } }