Socket
Socket
Sign inDemoInstall

ast-crumbs

Package Overview
Dependencies
1
Maintainers
4
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    ast-crumbs

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


Version published
Weekly downloads
2
Maintainers
4
Created
Weekly downloads
 

Readme

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

Last updated on 07 Oct 2017

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc