Skip to content

Releases: nestdotland/analyzer

v0.0.4

24 Aug 12:05
Compare
Choose a tag to compare

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/analyzer@0.0.4/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

17 Aug 06:53
Compare
Choose a tag to compare

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/analyzer@0.0.1/deno.ts";

© MIT license. nest.land authors