Parse Shopify product CSV export data to Lightspeed import CSV data using nodejs. (Lightspeed = former SEOshop).
node parseProducts.js input.csv output.csv --delimiter=semicolon
node
parseProducts.js
the script that parses the products from Shopify format to Lightspeed formatinput.csv
the input script in Shopify formatoutput.csv
the output script in Lightspeed format--delimiter=semicolon
optional input delimiter, values:[comma|semicolon]
defaults tosemicolon
--tabs
optional parameter, when opted it is set totrue
; if omitted it is set tofalse
. This parameter refers to the Shopify "Product Description Tabs" plugin. If true, all<h6>tab title</h6>
elements are rendered as—tab title—
.
node parseCustomers.js input.csv output.csv
- nodejs: https://nodejs.org/
node modules:
- csvtojson
- jsonexport
- fs
- progress
- minimist
install command: npm install -S csvtojson jsonexport fs progress minimist