npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

shopify-product-export-to-csv

v1.0.0

Published

Tool to export products from any Shopify store to CSV

Readme

Shopify Products and Collections Export Tool

Shopify Products and Collections Export Tool is a Node.js command-line application designed to export product and collection data from Shopify stores into CSV files. This tool enables Shopify store owners and developers to easily back up their store data or migrate to another platform.

Getting Started

Before using this tool, ensure you have Node.js and npm installed on your machine.

Installation

  1. Clone the repository: git clone [Repository URL]
  2. Navigate to the project directory: cd [Project Directory]
  3. Install NPM packages: npm install

Dependencies

This tool relies on the following npm packages:

  • axios - For making HTTP requests to the Shopify API.
  • fs - For file system operations, such as creating and writing to files.
  • @fast-csv/format - For formatting and exporting data to CSV files.
  • inquirer - For interactive command line prompts.

Usage

Configuring the Tool

To use this tool, you must provide the base URL of your Shopify store as a command line argument. Optionally, you can specify the number of products per page, the maximum number of pages to fetch, the delay between requests, and the name of the output CSV file.

Exporting Data

Run the script with the necessary command line arguments:

node shopify-export.js [Shopify Store URL] [Products Per Page] [Max Pages] [Request Delay] [CSV File Name]
  • [Shopify Store URL] - The base URL of your Shopify store.
  • [Products Per Page] - (Optional) Number of products to fetch per page. Defaults to 25.
  • [Max Pages] - (Optional) Maximum number of pages to fetch. Defaults to 2.
  • [Request Delay] - (Optional) Delay between requests in milliseconds. Defaults to 2000ms.
  • [CSV File Name] - (Optional) Name of the output CSV file. (not applicable to collections)

Examples

To export all products from the store:

node shopify-export.js https://yourshopifystore.com

To export products with custom configurations:

node shopify-export.js https://yourshopifystore.com 50 5 3000 custom_export.csv

Contributing

Your contributions are welcome! If you have suggestions for improving this tool, please open an issue or submit a pull request.