2.2.3 • Published 15 days ago

astx v2.2.3

Weekly downloads
-
License
MIT
Repository
github
Last release
15 days ago

astx

CircleCI Coverage Status semantic-release Commitizen friendly npm version

Super powerful structural search and replace for JavaScript and TypeScript to automate your refactoring

Table of Contents

Introduction

If you've ever refactored a function, and had to go through and change all the calls to that function by hand one by one, you know how much time it can take. For example, let's say you decided to move an optional boolean force argument to your rmdir function into an options hash argument:

// before:
rmdir('old/stuff')
rmdir('new/stuff', true)

// after:
rmdir('old/stuff')
rmdir('new/stuff', { force: true })

Changing a bunch of calls to rmdir by hand would suck. You could try using regex replace, but it's fiddly and wouldn't tolerate whitespace and linebreaks well unless you work really hard at the regex.

Now there's a better option...you can refactor with confidence using astx!

astx -f 'rmdir($path, $force)' -r 'rmdir($path, { force: $force })' src

What's going on here? Find and replace must be valid JS expressions or statements. astx parses them into AST (Abstract Syntax Tree) nodes, and then looks for matching AST nodes in your code. astx treats any identifier in starting with $ in the find or replace expression as a placeholder - in this case, $path and $force. (You can use leading $_ as an escape, for instance $_foo will match literal identifier $foo in your code).

When it gets to a function call, it checks that the function name matches rmdir, and that it has the same number of arguments. Then it checks if the arguments match. Our patterns for both arguments ($path, $force) are placeholders, so they automatically match and capture the corresponding AST nodes of the two arguments in your code.

Then astx replaces that function call it found with the replacement expression. When it finds placeholders in the replacement expression, it substitutes the corresponding values that were captured for those placeholders ($path captured 'new/stuff' and $force captured true).

Usage examples

Fixing eslint errors

Got a lot of Do not access Object.prototype method 'hasOwnProperty' from target object errors?

// astx.js
exports.find = `$a.hasOwnProperty($b)`
exports.replace = `Object.prototype.hasOwnProperty.call($a, $b)`

Converting require statements to imports

// astx.js
exports.find = `const $id = require('$source')`
exports.replace = `import $id from '$source'`

Making code DRY

In jscodeshift-add-imports I had a bunch of test cases following this pattern:

it(`leaves existing default imports untouched`, function () {
  const code = `import Baz from 'baz'`
  const root = j(code)
  const result = addImports(root, statement`import Foo from 'baz'`)
  expect(result).to.deep.equal({ Foo: 'Baz' })
  expect(root.toSource()).to.equal(code)
})

I wanted to make them more DRY, like this:

it(`leaves existing default imports untouched`, function () {
  testCase({
    code: `import Baz from 'baz'`,
    add: `import Foo from 'baz'`,
    expectedCode: `import Baz from 'baz'`,
    expectedReturn: { Foo: 'Baz' },
  })
})

Here was a transform for the above. (Of course, I had to run a few variations of this for cases where the expected code was different, etc.)

exports.find = `
const code = $code
const root = j(code)
const result = addImports(root, statement\`$add\`)
expect(result).to.deep.equal($expectedReturn)
expect(root.toSource()).to.equal(code)
`

exports.replace = `
testCase({
  code: $code,
  add: \`$add\`,
  expectedCode: $code,
  expectedReturn: $expectedReturn,
})
`

Prior art and philosophy

While I was thinking about making this I discovered grasp, a similar tool that inspired the $ capture syntax. There are several reasons I decided to make astx anyway:

  • Grasp uses the Acorn parser, which doesn't support TypeScript or Flow code AFAIK
  • Hasn't been updated in 4 years
  • Grasp's replace pattern syntax is clunkier, doesn't match the find pattern syntax: grasp -e 'setValue($k, $v, true)' -R 'setValueSilently({{k}}, {{v}})' file.js
  • It has its own DSL (SQuery) that's pretty limited and has a slight learning curve
  • I wanted a jscodeshift-like API I could use in JS for advanced use cases that are probably awkward/impossible in Grasp

So the philosophy of astx is:

  • Provide a simple find and replace pattern syntax that's ideal for simple cases and has minimum learning curve
  • Use the same search and replace pattern syntax in the javascript API for anything more complex, so that you have unlimited flexibility

Paste your code into AST Explorer if you need to learn about the structure of the AST.

API

Note: the identifier j in all code examples is an instance of jscodeshift, as per convention.

class Astx

import { Astx } from 'astx'
import j from 'jscodeshift'

const astx = new Astx(j, j('your code here'))

constructor(jscodeshift: JSCodeshift, paths: ASTPath<any>[] | Match[], options?: { withCaptures?: Match[] })

jscodeshift must be configured with your desired parser for methods to work correctly. For instance, if you're using TypeScript, it could be require('jscodeshift').withParser('ts').

paths specifies the ASTPaths or Matches you want Astx methods to search/operate on.

.find(...) (Astx)

Finds matches for the given pattern within this instance's starting paths and returns an Astx instance containing the matches.

If you call astx.find('foo($$args)') on the initial instance passed to your transform function, it will find all calls to foo within the file, and return those matches in a new Astx instance.

Methods on the returned instance will operate only on the matched paths.

For example if you do astx.find('foo($$args)').find('$a + $b'), the second find call will only search for $a + $b within matches to foo($$args), rather than anywhere in the file.

You can call .find as a method or tagged template literal:

  • .find`pattern`(options?: FindOptions)
  • .find(pattern: string | ASTNode | ASTNode[] | ASTPath | ASTPath[], options?: FindOptions)

If you give the pattern as a string, it must be a valid expression or statement(s) as parsed by the jscodeshift instance. Otherwise it should be valid AST node(s) you already parsed or constructed. You can interpolate AST nodes in the tagged template literal; it uses jscodeshift.template.expression or jscodeshift.template.statement under the hood.

For example you could do astx.find`${j.identifier('foo')} + 3`().

Or you could match multiple statements by doing

astx.findStatements`
  const $a = $b;
  $$c;
  const $d = $a + $e;
`()

This would match (for example) the statements const foo = 1; const bar = foo + 5;, with any number of statements between them.

.closest(...) (Astx)

Like .find(), but searches up the AST ancestors instead of down into descendants; finds the closest enclosing node of each input path that matches the given pattern.

FindOptions

An object with the following optional properties:

FindOptions.where ({ [captureName: string]: (path: ASTPath<any>) => boolean })

Where conditions for node captures. For example if your find pattern is $a(), you could have { where: { $a: path => /foo|bar/.test(path.node.name) } }, which would only match zero-argument calls to foo or bar.

FindOptions.withCaptures (Match | Match[])

Allows you to backreference captures in matches from previous find operations.

.find(...).replace(...) (void)

Finds and replaces matches for the given pattern within root.

There are several different ways you can call .replace. You can call .find in any way described above.

  • .find(...).replace`replacement`()
  • .find(...).replace(replacement: string | ASTNode | ASTNode[])
  • .find(...).replace(replacement: (match: Match<any>, parse: ParseTag) => string)
  • .find(...).replace(replacement: (match: Match<any>, parse: ParseTag) => ASTNode | ASTNode[])

If you give the replacement as a string, it must be a valid expression or statement as parsed by the jscodeshift instance. You can give the replacement as AST node(s) you already parsed or constructed. Or you can give a replacement function, which will be called with each match and must return a string or ASTNode | ASTNode[] (you can use the parse tagged template string function provided as the second argument to parse code into a string via jscodeshift.template.expression or jscodeshift.template.statement). For example, you could uppercase the function names in all zero-argument function calls (foo(); bar() becomes FOO(); BAR()) with this:

astx
  .find`$fn()`
  .replace(({ captures: { $fn } }) => `${$fn.name.toUpperCase()}()`)

.size() (number)

Returns the number of matches from the .find() or .closest() call that returned this instance.

.length (number)

Synonym for size().

.matches() (Match[])

Gets the matches from the .find() or .closest() call that returned this instance.

.match() (Match)

Gets the first match from the .find() or .closest() call that returned this instance.

Throws an error if there were no matches.

.paths() (ASTPath[])

Returns the paths that .find() and .closest() will search within. If this instance was returned by .find() or .closest(), these are the paths of nodes that matched the search pattern.

.nodes() (ASTNode[])

Returns the nodes that .find() and .closest() will search within. If this instance was returned by .find() or .closest(), these are the nodes that matched the search pattern.

.filter(iteratee) (Astx)

Filters the matches.

iteratee is function that will be called with match: Match, index: number, matches: Match[] and returns true or false. Only matches for which iteratee returns true will be included in the result.

.at(index) (Astx)

Selects the match at the given index.

.withCaptures(matches) (Astx)

Returns an Astx instance that contains captures from the given matches in addition to captures present in this instance.

.captures(name) (Astx)

Filters down to nodes captured with the given name. For example, astx.find('foo($arg)') will have calls to foo as matches/paths, but astx.find('foo($arg)').captures('$arg') will have just the first arguments as matches/paths.

.captureNode(name) (ASTNode | null)

Gets the first node that was captured with the given name.

.capturePath(name) (ASTPath<any> | null)

Gets the path of the first node that was captured with the given name.

.arrayCaptures(name) (Astx)

Filters down to arrays of nodes captured with the given name. For example, astx.find('foo($$arg)') will have calls to foo as matches/paths, but astx.find('foo($$arg)').captures('$$arg') will have just the arguments as matches/paths.

.arrayCaptureNodes(name) (ASTNode[] | null)

Gets the first array of nodes that was captured with the given name.

.arrayCapturePaths(name) (ASTPath<any>[] | null)

Gets the paths of the first array of nodes that was captured with the given name.

.stringCapture(name) (string | null)

Gets the first string value that was captured with the given name.

Match

.type

The type of match: 'node' or 'nodes'.

.path

The ASTPath of the matched node. If type is 'nodes', this will be paths[0].

.node

The matched ASTNode. If type is 'nodes', this will be nodes[0].

.paths

The ASTPaths of the matched nodes.

.nodes

The matched ASTNodes.

.captures

The ASTNodes captured from placeholders in the match pattern. For example if the pattern was foo($bar), .captures.$bar will be the ASTNode of the first argument.

.pathCaptures

The ASTPaths captured from placeholders in the match pattern. For example if the pattern was foo($bar), .pathCaptures.$bar will be the ASTPath of the first argument.

.arrayCaptures

The ASTNode[]s captured from array placeholders in the match pattern. For example if the pattern was foo({ ...$bar }), .arrayCaptures.$bar will be the ASTNode[]s of the object properties.

.arrayPathCaptures

The ASTPath[]s captured from array placeholders in the match pattern. For example if the pattern was foo({ ...$bar }), .pathArrayCaptures.$bar will be the ASTPath[]s of the object properties.

.stringCaptures

The string values captured from string placeholders in the match pattern. For example if the pattern was import foo from '$foo', stringCaptures.$foo will be the import path.

Match Patterns

Object Matching

An ObjectExpression (aka object literal) pattern will match any ObjectExpression in your code with the same properties in any order. It will not match if there are missing or additional properties. For example, { foo: 1, bar: $bar } will match { foo: 1, bar: 2 } or { bar: 'hello', foo: 1 } but not { foo: 1 } or { foo: 1, bar: 2, baz: 3 }.

You can match additional properties by using ...$$captureName, for example { foo: 1, ...$$rest } will match { foo: 1 }, { foo: 1, bar: 2 }, { foo: 1, bar: 2, ...props } etc. The additional properties will be captured in match.arrayCaptures/match.arrayPathCaptures, and can be spread in replacement expressions. For example, astx.find`{ foo: 1, ...$$rest }`.replace`{ bar: 1, ...$$rest }` will transform { foo: 1, qux: {}, ...props } into { bar: 1, qux: {}, ...props }.

A spread property that isn't of the form /^\$\$[a-z0-9]+$/i is not a capture variable, for example { ...foo } will only match { ...foo } and { ...$_$foo } will only match { ...$$foo } (leading $_ is an escape for $).

There is currently no way to match properties in a specific order, but it could be added in the future.

List Matching

In many cases where there is a list of nodes in the AST you can match multiple elements with a capture variable starting with $$. For example, [$$before, 3, $$after] will match any array expression containing an element 3; elements before the first 3 will be captured in $$before and elements after the first 3 will be captured in $$after.

This works even with block statements. For example, function foo() { $$before; throw new Error('test'); $$after; } will match function foo() that contains a throw new Error('test'), and the statements before and after that throw statement will get captured in $$before and $$after, respectively.

Support Table

Some items marked TODO probably actually work, but are untested.

TypeSupports list matching?Notes
ArrayExpression.elements
ArrayPattern.elements
BlockStatement.body
CallExpression.arguments
Class(Declaration/Expression).implements
ClassBody.body
ComprehensionExpression.blocksTODO
DeclareClass.bodyTODO
DeclareClass.implementsTODO
DeclareExportDeclaration.specifiersTODO
DeclareInterface.bodyTODO
DeclareInterface.extendsTODO
DoExpression.bodyTODO
ExportNamedDeclaration.specifiers
Function.decoratorsTODO
Function.params
FunctionTypeAnnotation/TSFunctionType.params
GeneratorExpression.blocksTODO
ImportDeclaration.specifiers
(TS)InterfaceDeclaration.bodyTODO
(TS)InterfaceDeclaration.extendsTODO
IntersectionTypeAnnotation/TSIntersectionType.types
JSX(Element/Fragment).children
JSX(Opening)Element.attributes
MethodDefinition.decoratorsTODO
NewExpression.arguments
ObjectExpression.properties
ObjectPattern.decoratorsTODO
ObjectPattern.properties
(ObjectTypeAnnotation/TSTypeLiteral).propertiesUse $a: any to match one property, $$a: any to match multiple
Program.body
Property.decoratorsTODO
SequenceExpression
SwitchCase.consequent
SwitchStatement.casesTODO
TemplateLiteral.quasis/expressions❓ not sure if I can come up with a syntax
TryStatement.guardedHandlersTODO
TryStatement.handlersTODO
TSFunctionType.parameters
TSCallSignatureDeclaration.parametersTODO
TSConstructorType.parametersTODO
TSConstructSignatureDeclaration.parametersTODO
TSDeclareFunction.paramsTODO
TSDeclareMethod.paramsTODO
TSEnumDeclaration.membersTODO
TSIndexSignature.parametersTODO
TSMethodSignature.parametersTODO
TSModuleBlock.bodyTODO
TSTypeLiteral.members
TupleTypeAnnotation/TSTupleType.types
(TS)TypeParameterDeclaration
(TS)TypeParameterInstantiation
UnionTypeAnnotation/TSUnionType.types
VariableDeclaration.declarations
WithStatement.body❌ who uses with statements...

String Matching

A string that's just a placeholder like '$foo' will match any string and capture its contents into match.stringCaptures.$foo. The same escaping rules apply as for identifiers. This also works for template literals like `$foo` and tagged template literals like doSomething`$foo`.

This can be helpful for working with import statements. For example, see Converting require statements to imports.

Extracting nodes

An empty comment (/**/) in a pattern will "extract" a node for matching. For example the pattern const x = { /**/ $key: $value } will just match ObjectProperty nodes against $key: $value.

The parser wouldn't be able to parse $key: $value by itself or know that you mean an ObjectProperty, as opposed to something different like the x: number in const x: number = 1, so using /**/ enables you to work around this. You can use this to match any node type that isn't a valid expression or statement by itself. For example type T = /**/ Array<number> would match Array<number> type annotations.

/**/ also works in replacement patterns.

$Optional(pattern)

Matches either the given expression or no node in its place. For example let $a = $Optional(2) will match let foo = 2 and let foo (with no initializer), but not let foo = 3.

$Or(...)

Matches nodes that match at least one of the given patterns. For example $Or(foo($$args), {a: $value}) will match calls to foo and object literals with only an a property.

$And(...)

Matches nodes that match all of the given patterns. This is mostly useful for narrowing down the types of nodes that can be captured into a given variable. For example, let $a = $And($init, $a + $b) will match let declarations where the initializer matches $a + $b, and capture the initializer as $init.

$Optional<pattern>

Matches either the given type annotation or no node in its place. For example let $a: $Optional<number> will match let foo: number and let foo (with no type annotation), but not let foo: string``let foo: string.

$Or<...>

Matches nodes that match at least one of the given type annotations. For example let $x: $Or<number[], string[]> will match let declarations of type number[] or string[].

$And<...>

Matches nodes that match all of the given type annotations. This is mostly useful for narrowing down the types of nodes that can be captured into a given variable. For example, let $a: $And<$type, $elem[]> will match let declarations where the type annotation matches $elem[], and capture the type annotation as $type.

| Backreferences

If you use the same capture variable more than once, subsequent positions will have to match what was captured for the first occurrence of the variable.

For example, the pattern foo($a, $a, $b, $b) will match only foo(1, 1, {foo: 1}, {foo: 1}) in the following:

foo(1, 1, { foo: 1 }, { foo: 1 }) // match
foo(1, 2, { foo: 1 }, { foo: 1 }) // no match
foo(1, 1, { foo: 1 }, { bar: 1 }) // no match

Note: array capture variables (like $$a) don't currently support backreferencing.

Transform files

Like jscodeshift, you can put code to perform a transform in a .js file (defaults to astx.js in the working directory, unless you use the -t CLI option).

The transform file API is a bit different from jscodeshift though. You can have the following exports:

exports.find (optional)

A code string or AST node of the pattern to find in the files being transformed.

exports.where (optional)

Where conditions for capture variables in exports.find. See FindOptions.where ({ [captureName: string]: (path: ASTPath<any>) => boolean }) for more information.

exports.replace (optional)

A code string, AST node, or replace function to replace matches of exports.find with.

The function arguments are the same as described in .find().replace() or .findStatements().replace(), depending on whether exports.find is multiple statements or not.

exports.parser (optional)

The parser name to use, or a Parser implementation:

interface Parser {
  parse(source: string, options?: any): types.ASTNode
}

exports.astx (optional)

A function to perform an arbitrary transform using the Astx API. It gets called with an object with the following properties:

  • source (string) - The source code of the file being transformed
  • path (string) - The path to the file being transformed
  • astx (Astx) - the Astx API instance
  • jscodeshift (JSCodeshift) - the JSCodeshift instance
  • j (JSCodeshift) - shorthand for the same JSCodeshift instance
  • expression - tagged template literal for parsing code as an expression, like jscodeshift.template.expression
  • statement - tagged template literal for parsing code as a statement, like jscodeshift.template.statement
  • statements - tagged template literal for parsing code as an array of statements, like jscodeshift.template.statements
  • report ((message: any) => void)

Unlike jscodeshift, your transform function can be async, and it doesn't have to return the transformed code, but you can return a string. You can also return null to skip the file.

CLI

Astx includes a CLI for performing transforms. The CLI will process the given files, then print out a diff of what will be changed, and prompt you to confirm you want to write the changes.

It will parse with babel by default using the version installed in your project and your project's babel config, if any. You can pass other parsers with the --parser option, just like jscodeshift (except you must use --parser tsx syntax rather than jscodeshift's --parser=tsx syntax).

Also unlike jscodeshift, if prettier is installed in your project, it will format the transformed code with prettier.

Usage:

astx -f <code> [<files...>] [<directories...>]

  Searches for the -f pattern in the given files and directories
  and prints out the matches in context

astx -f <code> -r <code> [<files...>] [<directories...>]

  Quick search and replace in the given files and directories
  (make sure to quote code)

  Example:

    astx -f 'rmdir($path, $force)' -r 'rmdir($path, { force: $force })' src

astx -t <transformFile> [<files ...>] [<directories ...>]

  Applies a transform file to the given files and directories

astx [<files ...>] [<directories ...>]

  Applies the default transform file (astx.js in working directory)
  to the given files and directories


Options:
      --help             Show help                                     [boolean]
      --version          Show version number                           [boolean]
  -t, --transform        path to the transform file. Can be either a local path
                         or url. Defaults to ./astx.js if --find isn't given
      --parser           parser to use                                  [string]
  -f, --find             search pattern                                 [string]
  -r, --replace          replace pattern                                [string]
      --babel-generator  use @babel/generator to generate output       [boolean]
3.0.0-beta.23

15 days ago

3.0.0-beta.24

15 days ago

3.0.0-beta.22

22 days ago

3.0.0-beta.20

1 month ago

3.0.0-beta.21

1 month ago

3.0.0-beta.19

1 month ago

3.0.0-beta.18

1 month ago

3.0.0-beta.16

1 month ago

3.0.0-beta.17

1 month ago

3.0.0-beta.15

2 months ago

3.0.0-beta.13

2 months ago

3.0.0-beta.14

2 months ago

3.0.0-beta.12

2 months ago

2.2.3

7 months ago

3.0.0-beta.10

6 months ago

3.0.0-beta.11

6 months ago

3.0.0-beta.1

7 months ago

3.0.0-beta.3

7 months ago

3.0.0-beta.2

7 months ago

3.0.0-beta.5

6 months ago

3.0.0-beta.4

7 months ago

3.0.0-beta.7

6 months ago

3.0.0-beta.6

6 months ago

3.0.0-beta.9

6 months ago

3.0.0-beta.8

6 months ago

2.2.1

12 months ago

2.2.0

12 months ago

2.2.2

12 months ago

2.1.4

12 months ago

2.1.2

1 year ago

2.1.1

1 year ago

2.1.3

1 year ago

2.1.0

1 year ago

2.0.2

1 year ago

2.0.0-beta.26

2 years ago

2.0.0-beta.25

2 years ago

2.0.0-beta.29

2 years ago

2.0.1

1 year ago

2.0.0-beta.28

2 years ago

2.0.0

1 year ago

2.0.0-beta.27

2 years ago

2.0.0-beta.40

1 year ago

2.0.0-beta.44

1 year ago

2.0.0-beta.43

1 year ago

2.0.0-beta.42

1 year ago

2.0.0-beta.41

1 year ago

2.0.0-beta.46

1 year ago

2.0.0-beta.45

1 year ago

2.0.0-beta.33

1 year ago

2.0.0-beta.32

1 year ago

2.0.0-beta.31

1 year ago

2.0.0-beta.30

2 years ago

2.0.0-beta.37

1 year ago

2.0.0-beta.36

1 year ago

2.0.0-beta.35

1 year ago

2.0.0-beta.34

1 year ago

2.0.0-beta.39

1 year ago

2.0.0-beta.38

1 year ago

2.0.0-beta.22

2 years ago

2.0.0-beta.21

2 years ago

2.0.0-beta.20

2 years ago

2.0.0-beta.24

2 years ago

2.0.0-beta.23

2 years ago

2.0.0-beta.19

2 years ago

2.0.0-beta.18

2 years ago

2.0.0-beta.17

2 years ago

2.0.0-beta.16

2 years ago

2.0.0-beta.9

2 years ago

2.0.0-beta.8

2 years ago

2.0.0-beta.7

2 years ago

2.0.0-beta.11

2 years ago

2.0.0-beta.10

2 years ago

2.0.0-beta.15

2 years ago

2.0.0-beta.14

2 years ago

2.0.0-beta.13

2 years ago

2.0.0-beta.12

2 years ago

2.0.0-beta.6

3 years ago

2.0.0-beta.5

3 years ago

2.0.0-beta.4

3 years ago

2.0.0-beta.3

3 years ago

2.0.0-beta.2

3 years ago

2.0.0-beta.1

3 years ago

1.2.3

3 years ago

1.2.2

3 years ago

1.2.1

3 years ago

1.2.0

3 years ago

1.1.0

3 years ago

1.0.0

3 years ago