When migrating from a WooCommerce site to Shopify, it can be useful to import the list of clients from the old site to be able to communicate with them or just for them to find their personal informations in the new site (email, address, etc.). If it's possible to use one of many WooCommerce specific plugins to export the customers list, I often find them slow and not very clear with what kind ...
const mysql = require('mysql2/promise');
const fs = require('fs');
const csv = require('fast-csv');
// TODO: Update these settings with your own config
const dbConfig = {
host: 'localhost'...