Socket
Socket
Sign inDemoInstall

estree-util-attach-comments

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

estree-util-attach-comments

Attach comments to estree nodes


Version published
Weekly downloads
1.3M
increased by7.52%
Maintainers
1
Weekly downloads
 
Created

What is estree-util-attach-comments?

The estree-util-attach-comments package is a utility for attaching comments to nodes in an ESTree-compliant abstract syntax tree (AST). This is particularly useful for tools that need to preserve comments when transforming or analyzing JavaScript code.

What are estree-util-attach-comments's main functionalities?

Attach comments to AST nodes

This feature allows you to attach comments to the corresponding nodes in an AST. The code sample demonstrates parsing JavaScript code with Acorn, collecting comments, and then attaching those comments to the AST nodes using estree-util-attach-comments.

const { attachComments } = require('estree-util-attach-comments');
const acorn = require('acorn');
const comments = [];
const ast = acorn.parse('const x = 42; // a comment', {
  onComment: comments
});
attachComments(ast, comments);
console.log(ast);

Other packages similar to estree-util-attach-comments

Keywords

FAQs

Package last updated on 18 Mar 2021

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