Skip to content

Latest commit

 

History

History
61 lines (42 loc) · 1.08 KB

README.md

File metadata and controls

61 lines (42 loc) · 1.08 KB

Convert affiliate links

Script to convert Amazon to Bookshop.org affiliate links.

Takes a file with text like:

href="https://www.amazon.com/gp/product/[ISBN]/..."

And replaces it with:

href="https://bookshop.org/a/[YOUR AFFILIATE ID]/[UPC]"

Install

yarn global add convert-affiliate-links

or

npm install -g convert-affiliate-links

Example usage

Amazon to Bookshop

convert-affiliate-links -r ~/word_press_export.xml -w word_press_import.xml -a 12345

Bookshop to Amazon

convert-affiliate-links -r ~/word_press_export.xml -w word_press_import.xml -c 12345 -s 12345 -p 12345

Help

% convert-affiliate-links -h
yarn run v1.22.4
$ tsc && node ./build/src/index.js --help
Usage: convert-affiliate-links [options]

Options:
  -V, --version                  output the version number
  -r, --read-path <read-path>
  -w, --write-path <write-path>
  -h, --help                     display help for command
✨  Done in 1.58s.

How?

Uses https://www.isbn.org for ISBN to UPC conversion.