1--- 2section: cli-commands 3title: npm-bugs 4description: Bugs for a package in a web browser maybe 5--- 6 7# npm-bugs(1) 8 9## Bugs for a package in a web browser maybe 10 11### Synopsis 12```bash 13npm bugs [<pkgname>] 14 15aliases: issues 16``` 17 18### Description 19 20This command tries to guess at the likely location of a package's 21bug tracker URL, and then tries to open it using the `--browser` 22config param. If no package name is provided, it will search for 23a `package.json` in the current folder and use the `name` property. 24 25### Configuration 26 27#### browser 28 29* Default: OS X: `"open"`, Windows: `"start"`, Others: `"xdg-open"` 30* Type: String 31 32The browser that is called by the `npm bugs` command to open websites. 33 34#### registry 35 36* Default: https://registry.npmjs.org/ 37* Type: url 38 39The base URL of the npm package registry. 40 41 42### See Also 43 44* [npm docs](/cli-commands/npm-docs) 45* [npm view](/cli-commands/npm-view) 46* [npm publish](/cli-commands/npm-publish) 47* [npm registry](/using-npm/registry) 48* [npm config](/cli-commands/npm-config) 49* [npmrc](/configuring-npm/npmrc) 50* [package.json](/configuring-npm/package-json) 51