> For the complete documentation index, see [llms.txt](https://cheatsheet.mrw0l05zyn.cl/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://cheatsheet.mrw0l05zyn.cl/snyk.md).

# Snyk

Instalación en Linux.

```sh
curl https://static.snyk.io/cli/latest/snyk-linux -o snyk
chmod +x ./snyk
mv ./snyk /usr/local/bin/
```

Escaneo general.

```sh
snyk code test <project-path>
```

Escaneo de dependencias.

```sh
snyk test <project-path>
```
