New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

ast-crumbs

Package Overview
Dependencies
Maintainers
4
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ast-crumbs

AST Crumbs ==========

  • 0.0.4
  • latest
  • npm
  • Socket score

Version published
Maintainers
4
Created
Source

AST Crumbs

Builds a data structure by traversing the AST (based on rules) of Fluent-style method invocations.

It can, for instance, analyze the AST similar to

db.products.filter(u => u.buyer === "jeswin").slice(0, 10);

Traversal rules, aka nodeDefinitions

const nodeDefinitions = [
  {
    id: "root",
    type: "predicate",
    predicate: isRoot,
    builder: args => ({ ...args }),
    args: getRootArgs
  },
  {
    id: "filter",
    name: "filter",
    type: "CallExpression",
    follows: ["root"],
    builder: (src, args) => ({ ...src, ...args }),
    args: path => ({ filter: true })
  },
  {
    id: "slice",
    name: "slice",
    type: "CallExpression",
    follows: ["root", "filter"],
    builder: (src, args) => ({ ...src, ...args }),
    args: path => ({ slice: true })
  },
  {
    id: "length",
    name: "length",
    type: "MemberExpression",
    follows: ["root", "filter"],
    builder: (src, args) => ({ ...src, length: true })
  }
];

In the above example, builder is invoked when a node matching a specific node-definition is found. The follows fields specifies acceptable parent node types.

After defining the rules (nodeDefinitions), the analyzer can be constructed for use in a babel plugin

const analyzer = crumbs(
  nodeDefinitions,
  isRoot
);

return {
  visitor: {
    CallExpression: path => analyzer(path, ["filter", "slice"]),
  }
}

FAQs

Package last updated on 07 Oct 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc