meow install
Resolve declared dependencies, write the lockfile, and materializenode_modules.
| Flag | Description |
|---|---|
--materialize | Install into node_modules/ (the default layout). |
--vendor | Copy packages into a vendor/ directory instead. |
--vendor-dir <dir> | Target directory for --vendor (default vendor). |
--clean | Remove the existing node_modules/ or vendor/ first. |
-D, --dev | Add the given package(s) to devDependencies before installing. |
-g, --global | Install globally (writes a shim in ~/.meow/bin). |
--compat-lockfile | Also write a minimal package-lock.json marker. |
[packages…] | Optional specifiers to add before installing. |
i is an alias for install.
meow add
Add one or more dependencies topackage.json, then install.
| Flag | Description |
|---|---|
-D, --dev | Add to devDependencies instead of dependencies. |
-g, --global | Install globally (writes a ~/.meow/bin shim that runs via meow x). |
<packages…> | One or more specifiers (name, name@range, name@tag, npm:other@range). |
latest dist-tag.
meow remove
Remove dependencies frompackage.json, then install. Aliases: rm, del,
delete, uninstall.
| Flag | Description |
|---|---|
-g, --global | Remove the global shim. |
<packages…> | Package names (remove by name — don’t include a version). |
meow search
Search the npm registry. Aliases:s, find.
| Flag | Default | Description |
|---|---|---|
-n, --limit <N> | 20 | Max results (capped at 250). |
--json | off | Emit raw JSON instead of the table. |
<query…> | Search terms (joined with spaces). |
Quality commands
check, lint, fmt, bundle.