DEV Community

Bobo
Bobo

Posted on

Speed Up Your Data Processing with This One CLI Tool

The Problem

You have a CSV to clean. A folder of images to compress. A JSON to format. A PDF to merge.

That's 4 different tools. 4 different workflows. 4 different mental contexts to switch between.

The Solution

One command:

toolkit csv merge sales_*.csv -o merged.csv
toolkit image compress ./photos/ --quality 80
toolkit json format config.json --indent 2
toolkit pdf merge *.pdf
Enter fullscreen mode Exit fullscreen mode

No GUI. No drag-and-drop. No context switching.

What It Does

  • CSV/Excel — Merge, clean, convert, analyze
  • JSON — Format, validate, filter, transform
  • Images — Compress, resize, batch convert
  • PDF — Merge, split, extract text
  • Text — Batch find and replace
  • Files — Organize, rename, deduplicate
  • Pipeline — Chain everything into workflows

Get It

Free (file + text): Always free
Pro ($9.99): Everything else

👉 https://bobotempes.gumroad.com/l/nmcqjr

npm install -g cli-toolkit-pro
toolkit --help
Enter fullscreen mode Exit fullscreen mode

Built with Node.js 18+. Works on Windows, Mac, Linux.

Top comments (0)