mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
18 lines
366 B
Plaintext
18 lines
366 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# npm explore
|
|
|
|
> Browse an installed npm package.
|
|
> More information: <https://docs.npmjs.com/cli/npm-explore/>.
|
|
|
|
- Browse an installed package:
|
|
|
|
`npm explore {{package_name}}`
|
|
|
|
- Browse a package and run a command inside it:
|
|
|
|
`npm explore {{package_name}} -- {{command}}`
|