MarketDeck docs
Install via npm
Global install with npm — for users in a Node-heavy workflow who want the binary in their npm global prefix.
The npm-global path drops marketdeck on your PATH without requiring a clone. Best for users who don't intend to read the source.
What you need#
- Node.js 20+ with npm. Tested with npm 10.
Install#
npm install -g marketdeck
If your global npm prefix lives outside $PATH (the default on some distros), npm prints a hint. To install into a user-owned prefix without sudo:
mkdir -p "$HOME/.npm-global"
npm config set prefix "$HOME/.npm-global"
export PATH="$HOME/.npm-global/bin:$PATH"
npm install -g marketdeck
Add the export PATH=… line to your shell init file (~/.bashrc, ~/.zshrc, …) so future shells pick it up too.
Verify#
which marketdeck
marketdeck version --format text
marketdeck doctor
Update#
npm install -g marketdeck@latest
Uninstall#
npm uninstall -g marketdeck
This removes the binary; user state under ~/.local/share/marketdeck/ and ~/.config/marketdeck/ is left intact so a re-install resumes where you left off. Wipe those dirs by hand if you want a clean slate.