类似于 npm audit
,用来检测 deno module 是否有安全漏洞。
使用:
import audit from "https://deno.land/x/audit/mod.ts";
await audit("testModule", "https://deno.land/x/audit/example.json", "2.6");
// your module code
当运行程序时,添加 --audit
命令行参数。
类似于 npm audit
,用来检测 deno module 是否有安全漏洞。
使用:
import audit from "https://deno.land/x/audit/mod.ts";
await audit("testModule", "https://deno.land/x/audit/example.json", "2.6");
// your module code
当运行程序时,添加 --audit
命令行参数。