Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/freedomofpress/npm-audit-plus
A wrapper around NPM's built-in audit that adds extra features
https://github.com/freedomofpress/npm-audit-plus
Last synced: 7 days ago
JSON representation
A wrapper around NPM's built-in audit that adds extra features
- Host: GitHub
- URL: https://github.com/freedomofpress/npm-audit-plus
- Owner: freedomofpress
- License: agpl-3.0
- Created: 2019-04-11T17:17:15.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-07-18T19:59:53.000Z (over 1 year ago)
- Last Synced: 2024-10-30T01:37:15.002Z (14 days ago)
- Language: JavaScript
- Homepage:
- Size: 43.9 KB
- Stars: 8
- Watchers: 10
- Forks: 3
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# NPM Audit+
**NPM Audit+** is a wrapper around NPM's [built-in audit tool](https://docs.npmjs.com/cli/audit). It adds the following functionality:
* Ignore particular advisories
* Specify a project to audit
* Output audit result as JUnit XML, compatible with many CI systems## Installation
Install globally:
```sh
npm install -g npm-audit-plus
```or install locally:
```sh
npm install npm-audit-plus
```Either works!
## Usage
```sh
npm-audit-plus --ignore=123,456 --xml # If installed globally
$(npm bin)/npm-audit-plus --ignore=123,456 --xml # If installed locally
```For more documentation on NPM Audit+'s flags, run
```sh
npm-audit-plus --help # If installed globally
$(npm bin)/npm-audit-plus --help # If installed locally
```