storemyapi
Getting Started

Installation

Install the storemyapi CLI on macOS, Linux, or Windows.

Installation

The storemyapi CLI is distributed as a standalone binary. No runtime dependencies required.

macOS

Using Homebrew:

brew tap aliasgarsogiawala/storemyapi
brew install storemyapi

Or download the binary directly:

curl -fsSL https://get.storemyapi.com/install.sh | sh

Linux

Using the install script:

curl -fsSL https://get.storemyapi.com/install.sh | sh

Or with wget:

wget -qO- https://get.storemyapi.com/install.sh | sh

Manual install (deb/rpm):

# Debian / Ubuntu
sudo dpkg -i storemyapi_0.1.0_amd64.deb

# Fedora / RHEL
sudo rpm -i storemyapi-0.1.0.x86_64.rpm

Windows

Using Scoop:

scoop bucket add storemyapi https://github.com/aliasgarsogiawala/scoop-storemyapi
scoop install storemyapi

Or download the .exe from the GitHub Releases page.

npm (cross-platform)

If you prefer npm:

npm install -g @storemyapi/cli

Verify installation

After installing, verify the CLI is available:

storemyapi --version
# storemyapi/0.1.0 darwin-arm64

storemyapi --help

Updating

# Homebrew
brew upgrade storemyapi

# npm
npm update -g @storemyapi/cli

# Install script (re-run)
curl -fsSL https://get.storemyapi.com/install.sh | sh

Uninstalling

# Homebrew
brew uninstall storemyapi

# npm
npm uninstall -g @storemyapi/cli

# Manual (Linux/macOS)
rm -f /usr/local/bin/storemyapi
rm -rf ~/.storemyapi

On this page