You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Rich Trott d7aa8fa088 tools: update ESLint to version 2.1.0 9 years ago
..
.npmignore tools: update ESLint to version 2.1.0 9 years ago
.travis.yml tools: update ESLint to version 2.1.0 9 years ago
LICENSE tools: replace closure-linter with eslint 10 years ago
README.md tools: replace closure-linter with eslint 10 years ago
estraverse-fb.js tools: replace closure-linter with eslint 10 years ago
keys.js tools: replace closure-linter with eslint 10 years ago
package.json tools: update ESLint to version 2.1.0 9 years ago
test.js tools: update ESLint to version 2.1.0 9 years ago

README.md

estraverse-fb

Build Status

Drop-in for estraverse that enables traversal over React's JSX and Flow nodes using monkey-patching technique.

You can use estraverse-fb in two possible ways:

  • by default, you just require it and it injects needed keys into your installed version of estraverse (it's installed automatically if you don't have it yet):

    var estraverse = require('estraverse-fb');
    /* same as:
        require('estraverse-fb');
        var estraverse = require('estraverse');
    */
    
    estraverse.traverse(ast, {
        enter: ...,
        leave: ...
    });
    
  • alternatively, you can use it manually for selected traversals:

    var jsxKeys = require('estraverse-fb/keys');
    
    estraverse.traverse(ast, {
        enter: ...,
        leave: ...,
        keys: jsxKeys
    })
    

Check out [estraverse page](https://github.com/Constellation/estraverse) for detailed usage.