meow x — ephemeral execution
meow x is meow’s npx/bunx: it installs a package into a throwaway
workspace, runs its binary, and discards the workspace afterward. Nothing is added
to your project.
How it works
Temp workspace
meow creates a temporary directory, writes a minimal
package.json, and
resolves the requested package (latest by default, or your specifier).Install & verify
The package and its dependencies install into the temp workspace using the same
verified, cached pipeline as
meow install — so a tool you’ve run before starts
instantly from cache.The security envelope
Before running freshly downloaded code,meow x tells you what host access it has:
Shorthands
Thanks to the omni-router and the installed shims, you can reachmeow x several ways:
Global installs
meow add -g installs a package’s binary globally. meow writes a lightweight shim
into ~/.meow/bin that runs the package through meow x on demand — so global
“installs” stay current and never bloat a global node_modules.
Searching the registry
Find packages without leaving the terminal:s and find are aliases for search.
Back to dependency management
install, add, remove, and the cache.