scoped
scoped is a command line tool to help you reason about your javascript.
scoped is also a library that will give you all of the scope information about
a given falafel-generated AST! (it even works with let!)
var scoped = require('scoped')
, falafel = require('falafel')
falafel('<some javascript>', scoped(function(scope) {
scope.vars
scope.vars[0].name
scope.vars[0].nodes
scope.vars[0].nodes[0].kind
scope.vars[0].nodes[0].node
scope.children
scope.children[0]
scope.uses
}))
falafel('<some javascript>', scoped(['Math', 'module'], function(scope) {
}))
it notifies you of globals -- both explicit (created by assigning) and implicit
(use without definition) -- and, when given a position in the file, will let you know
what variables are in scope at that point.

usage
scoped path/to/file.js
outputs only global usage/leakage information, with line and column numbers.
scoped path/to/file.js --position=line[,column]
outputs scope chain, with usage/definition for each scope. position is
in the form LINE,COLUMN. ,COLUMN may be omitted, if so, it is assumed
to be 1. Both line and column are assumed to be 1-indexed (like most
editors).
-
Green + signs indicate scope definitions -- i.e., a new variable was created
in this scope.
-
Purple * signs indicate use of a variable from a containing scope.
-
If the function is named, it will use that to describe the function.
installation
npm install -g scoped
license
MIT