ls / store
List installed browsers.
Usage
# List project-associated browsers
pbvm ls [-a]
# List browsers in the global Store
pbvm store [-a]
Options
| Option | Short | Description |
|---|---|---|
--all | -a | Show browsers for all platforms, not just the current one |
Description
pbvm ls
Lists browsers recorded in the current directory's browserlist.json. Grouped by platform, with the current platform shown first.
Output format:
mac_arm (current):
my-chrome → revision: chrome@134.0.6998.35
dev-firefox → revision: firefox@stable_136.0.0
pbvm store
Lists all browsers installed in the global Store (i.e. downloaded binaries). Also grouped by platform.
Examples
# View browsers for the current project
pbvm ls
# View browsers for all platforms
pbvm ls -a
# View all browsers in the global cache
pbvm store
# View all-platform browsers in the global cache
pbvm store -a
ls vs store
pbvm ls | pbvm store | |
|---|---|---|
| Data source | browserlist.json (project) | Global cache directory (system) |
| Shows | Browsers associated with project | All downloaded browser binaries |
| Includes alias | Yes | No |
| Use case | See which browsers a project uses | See what's cached locally |