Releases: nestdotland/analyzer
Releases · nestdotland/analyzer
v0.0.4
Breaking changes - v0.0.4
nest_analyzer
got a runtime analyzer! - #13- ...and a playground! - #24
- ...also an enhanced dependency tree analyzer - #15, #7
Usage
Deno
import { analyze } from "https://x.nest.land/[email protected]/deno.ts";
const diagnostics = analyze(source_code, {
runtime: true // enables runtime analysis
});
Rust
In your Cargo.toml
nest_analyzer = { git = "https://github.com/nestdotland/analyzer" )
See the rust docs for usage.
© MIT license. nest.land authors
Initial Release v0.0.1
Presenting nest_analyzer
A way to scan for broken and malicious JS/TS Deno modules.
We currently support two rules: ban-deno-run
and ban-deno-plugin
. We would love for contributions/additions to this!
Github - https://github.com/nestdotland/analyzer
Playground - https://analyzer.nest.land
Usage
Rust
In your Cargo.toml
nest_analyzer = { git = "https://github.com/nestdotland/analyzer" )
See the rust docs for usage.
Deno
import { analyze } from "https://x.nest.land/[email protected]/deno.ts";
© MIT license. nest.land authors