npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ast-loc-utils

v1.1.0

Published

Tools for manipulating node source locations in a Babel AST.

Downloads

11

Readme

ast-loc-utils

A lightweight, cherry-pickable bundle of tools for manipulating source location information (loc, start, and end) in Babel AST nodes.

Notes

/lib cherry-picking convention

Avoid importing a monolithic bundle by cherry-picking exactly what you need. Individual methods are cherry-pickable with import someMethod from 'ast-loc-utils/lib/someMethod'.

Location mixins

Some ast-loc-utils functions produce or consume a LocationMixin, which is a JS object that carries full location information for a Babel node and can be Object.assign()ed onto a Babel node to change its location.

Functions

getLoc

getLoc(node: BabelNode) -> LocationMixin

Gets the location mixin representing the location of the given node.

getSurroundingLoc

getSurroundingLoc(nodes: Array<BabelNode>) -> LocationMixin

Gets a location mixin representing a source location that surrounds the total extent of all the input nodes.

buildAtLoc

buildAtLoc(loc: LocationMixin, builder: function, ...args: any) -> BabelNode

Construct a node by calling the given babel-types builder function with the given args, then place it at the given location.

placeAtLoc

placeAtLoc(node: BabelNode, loc: LocationMixin) -> BabelNode

Replaces the location information on the given node. Returns the node. Equivalent to Object.assign(node, loc).

placeTreeAtLoc

placeTreeAtLoc(node: BabelNode, loc: LocationMixin) -> BabelNode

Replaces the location information on the given node and all descendants. Returns the node.

placeTreeAtLocWhenUnplaced

placeTreeAtLocWhenUnplaced(node: BabelNode, loc: LocationMixin) -> BabelNode

Replaces the location on all descendants of the given node only if they do not already have location information present. Returns the node.

placeAtNode

placeAtNode(targetNode: BabelNode, sourceNode: BabelNode) -> BabelNode

Copies source location information from the sourceNode to the targetNode, returning the targetNode. Equivalent to Object.assign(targetNode, getLocation(sourceNode)).

placeAroundNodes

placeAroundNodes(targetNode: BabelNode, ...sourceNodes: BabelNode) -> BabelNode

Assigns a source location to the targetNode that surrounds the total extent of all the sourceNodes and returns the targetNode. Equivalent to Object.assign(targetNode, getSurroundingLocation(sourceNodes)).

span

span(loc: LocationMixin, n: Integer) -> LocationMixin

Create a LocationMixin obtained by extracting the first or last n characters of the given LocationMixin. If n is positive, the first n characters are extracted; if negative, the last n are extracted.

Note that this operation has no insight into the token stream or newline boundaries. When extracting a span, you must be sure that all characters in your span are on the same source line. If the span would cross a line boundary, the resulting output will be incorrect.