thunder-client-support
thunder-client-support copied to clipboard
Plan to register Thunder Client CLI as a Homebrew formula?
Please describe feature/problem details and solution you'd like.
It would be nice if we could install Thunder Client CLI with brew command (e.g. brew install tc-cli).
Do you have the plan to register the CLI on Homebrew formulae in the future?
Thanks @solzard for the feedback, Will add to roadmap.
One question: Is there any restriction for you install from npm?
No, npm i -g @thunderclient/cli works totally fine.
The reason I prefer brew install is that
- I personally hesitate over installing stuff to global Node.js (
npm -i -g) or Python (pip install). - It's easy to control package installation, uninstallation, or upgrade using
brew: End-users can forget backend languages. Justbrew {install, uninstall, upgrade}works. -
brew bundle dumpprovides Brewfile, a full list of installed commands. Thanks to this, we can restore the same environment on new machines seamlessly.
Thanks for clarification 👍