
Security News
How Enterprise Security Is Adapting to AI-Accelerated Threats
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.
ast-walker-scope
Advanced tools
Traverse Babel AST with scope information.
Inherited from estree-walker.
npm i ast-walker-scope
For a real example, you can refer to example.ts
import { walk } from 'ast-walker-scope'
const code = `
const a = 'root level'
{
const a = 'second level'
let secondLevel = true
console.log(a, secondLevel)
}
var err = undefined
try {
} catch (err) {
console.log(err)
}
console.log(a)
`.trim()
walk(code, {
leave(this, node) {
if (node.type === 'CallExpression') {
console.log(`\nLevel: ${this.level}`)
for (const [name, node] of Object.entries(this.scope)) {
console.log(
`variable ${name} is located at line ${node.loc?.start.line}, column ${node.loc?.start.column}`,
)
}
}
},
})
Output:
Level: 2
variable a is located at line 4, column 8
variable secondLevel is located at line 5, column 6
Level: 2
variable a is located at line 1, column 6
variable err is located at line 12, column 9
Level: 1
variable a is located at line 1, column 6
variable err is located at line 9, column 4
export type Scope = Record<string, Node>
export interface HookContext extends WalkerContext {
// inherited from estree-walker
skip: () => void
remove: () => void
replace: (node: Node) => void
// arguments of estree-walker hook
parent: Node
key: string
index: number
// scope info
scope: Scope
scopes: Scope[]
level: number
}
FAQs
Traverse Babel AST with scope information.
The npm package ast-walker-scope receives a total of 758,403 weekly downloads. As such, ast-walker-scope popularity was classified as popular.
We found that ast-walker-scope demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.