📅  最后修改于: 2023-12-03 15:33:12.563000             🧑  作者: Mango
As a programmer, you may come across situations where you need to audit your NPM packages for security vulnerabilities. The npm audit
command is a powerful tool that can help you identify security issues within your project's dependencies. However, sometimes you don't need to see every vulnerability, only the high ones.
Luckily, there is a way to filter out the less severe vulnerabilities using the --audit-level
flag in combination with the grep
command.
Here's an example of how you can use this command to only display high severity vulnerabilities in your project:
npm audit --audit-level=high | grep "severity: high"
This command will run the npm audit
command and only display the results that have a severity of "high."
It's important to note that while this command can be useful in filtering the results, it doesn't mean that the other vulnerabilities should be ignored. It's always a good practice to fix all vulnerabilities within your project.
In summary, the npm audit only high vuln
command can be a useful tool for quickly identifying high severity vulnerabilities within your project. However, it should be used in conjunction with fixing all vulnerabilities in your dependencies for the best security practices.
# npm audit only high vuln - Shell-Bash
As a programmer, you may come across situations where you need to audit your NPM packages for security vulnerabilities. The `npm audit` command is a powerful tool that can help you identify security issues within your project's dependencies. However, sometimes you don't need to see every vulnerability, only the high ones.
Luckily, there is a way to filter out the less severe vulnerabilities using the `--audit-level` flag in combination with the `grep` command.
Here's an example of how you can use this command to only display high severity vulnerabilities in your project:
```shell
npm audit --audit-level=high | grep "severity: high"
This command will run the npm audit
command and only display the results that have a severity of "high."
It's important to note that while this command can be useful in filtering the results, it doesn't mean that the other vulnerabilities should be ignored. It's always a good practice to fix all vulnerabilities within your project.
In summary, the npm audit only high vuln
command can be a useful tool for quickly identifying high severity vulnerabilities within your project. However, it should be used in conjunction with fixing all vulnerabilities in your dependencies for the best security practices.