node CLI tool to create a CSV file from exported bookmarks html file from Chrome or Firefox.
CSV columns:
addDate
href
title
category
- folder name
Caveats
- Firefox mobile links aren't included. They must be manually copied to another folder before exporting.
npm run build
to transpile the script.
Required arguments:
--input <path to bookmarks.html>
--output <filename including .csv>
node build <arguments>
or npm start -- <arguments>
alias bkcsv="node ~/bookmarks_to_csv/build";
bkcsv -i ~/Desktop/bookmarks210116.html -o bookmarks210116.csv
npm run start-dev
run once
npm run start-watch
watch mode
Started with node-cli-scaffold