
Security News
Django Joins curl in Pushing Back on AI Slop Security Reports
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
estree-util-to-js
Advanced tools
estree (and esast) utility to serialize estrees as JavaScript.
This package is a utility that turns an estree syntax tree into a string of JavaScript.
You can use this utility when you want to get the serialized JavaScript that is represented by the syntax tree, either because youβre done with the syntax tree, or because youβre integrating with another tool that does not support syntax trees.
This utility is particularly useful when integrating with other unified tools, such as unist and vfile.
The utility esast-util-from-js
does the inverse of this
utility.
It turns JS into esast.
This package is ESM only. In Node.js (version 16+), install with npm:
npm install estree-util-to-js
In Deno with esm.sh
:
import {toJs} from 'https://esm.sh/estree-util-to-js@2'
In browsers with esm.sh
:
<script type="module">
import {toJs} from 'https://esm.sh/estree-util-to-js@2?bundle'
</script>
import fs from 'node:fs/promises'
import {parse} from 'acorn'
import {toJs} from 'estree-util-to-js'
const file = String(await fs.readFile('index.js'))
const tree = parse(file, {ecmaVersion: 2022, sourceType: 'module', locations: true})
// @ts-expect-error: acorn is funky but it works fine.
console.log(toJs(tree))
Yields:
{
value: "export {toJs} from './lib/index.js';\nexport {jsx} from './lib/jsx.js';\n",
map: undefined
}
This package exports the identifiers jsx
and toJs
.
There is no default export.
toJs(tree[, options])
Serialize an estree as JavaScript.
Result, optionally with source map (Result
).
jsx
Map of handlers to handle the nodes of JSX extensions in JavaScript
(Handlers
).
Handler
Handle a particular node (TypeScript type).
this
(Generator
)
β astring
generatornode
(Node
)
β node to serializestate
(State
)
β info passed aroundNothing (undefined
).
Handlers
Handlers of nodes (TypeScript type).
type Handlers = Partial<Record<Node['type'], Handler>>
Map
Raw source map from source-map
(TypeScript type).
Options
Configuration (TypeScript type).
SourceMapGenerator
(SourceMapGenerator
)
β generate a source map with this classfilePath
(string
)
β path to original input filehandlers
(Handlers
)
β extra handlersResult
Result (TypeScript type).
value
(string
)
β serialized JavaScriptmap
(Map
or undefined
)
β source map as (parsed) JSONState
State from astring
(TypeScript type).
Source maps are supported when passing the SourceMapGenerator
class from
source-map
.
You should also pass filePath
.
Modified example from Β§ Use above:
import fs from 'node:fs/promises'
import {parse} from 'acorn'
+import {SourceMapGenerator} from 'source-map'
import {toJs} from 'estree-util-to-js'
-const file = String(await fs.readFile('index.js'))
+const filePath = 'index.js'
+const file = String(await fs.readFile(filePath))
const tree = parse(file, {
ecmaVersion: 2022,
@@ -11,4 +13,4 @@ const tree = parse(file, {
})
// @ts-expect-error: acorn is funky but it works fine.
-console.log(toJs(tree))
+console.log(toJs(tree, {filePath, SourceMapGenerator}))
Yields:
{
value: "export {toJs} from './lib/index.js';\nexport {jsx} from './lib/jsx.js';\n",
map: {
version: 3,
sources: [ 'index.js' ],
names: [],
mappings: 'QAOQ,WAAW;QACX,UAAU',
file: 'index.js'
}
}
To get comments to work, they have to be inside the tree.
This is not done by Acorn.
estree-util-attach-comments
can do that.
Modified example from Β§ Use above:
import fs from 'node:fs/promises'
import {parse} from 'acorn'
+import {attachComments} from 'estree-util-attach-comments'
import {toJs} from 'estree-util-to-js'
const file = String(await fs.readFile('index.js'))
+/** @type {Array<import('estree-jsx').Comment>} */
+const comments = []
const tree = parse(file, {
ecmaVersion: 2022,
sourceType: 'module',
- locations: true
+ locations: true,
+ // @ts-expect-error: acorn is funky these comments are fine.
+ onComment: comments
})
+attachComments(tree, comments)
// @ts-expect-error: acorn is funky but it works fine.
console.log(toJs(tree))
Yields:
{
value: '/**\n' +
"* @typedef {import('./lib/index.js').Options} Options\n" +
"* @typedef {import('./lib/types.js').Handler} Handler\n" +
"* @typedef {import('./lib/types.js').Handlers} Handlers\n" +
"* @typedef {import('./lib/types.js').State} State\n" +
'*/\n' +
"export {toJs} from './lib/index.js';\n" +
"export {jsx} from './lib/jsx.js';\n",
map: undefined
}
To get JSX to work, handlers need to be registered.
This is not done by default, but they are exported as jsx
and can be passed.
Modified example from Β§ Use above:
import fs from 'node:fs/promises'
-import {parse} from 'acorn'
-import {toJs} from 'estree-util-to-js'
+import {Parser} from 'acorn'
+import acornJsx from 'acorn-jsx'
+import {jsx, toJs} from 'estree-util-to-js'
-const file = String(await fs.readFile('index.js'))
+const file = '<>{1 + 1}</>'
-const tree = parse(file, {
+const tree = Parser.extend(acornJsx()).parse(file, {
ecmaVersion: 2022,
sourceType: 'module',
locations: true
})
// @ts-expect-error: acorn is funky but it works fine.
-console.log(toJs(tree))
+console.log(toJs(tree, {handlers: jsx}))
Yields:
{ value: '<>{1 + 1}</>;\n', map: undefined }
This package is fully typed with TypeScript.
It exports the additional types Handler
,
Handlers
,
Map
,
Options
,
Result
, and
State
.
Projects maintained by the unified collective are compatible with maintained versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line, estree-util-to-js@^2
,
compatible with Node.js 16.
See contributing.md
in syntax-tree/.github
for
ways to get started.
See support.md
for ways to get help.
This project has a code of conduct. By interacting with this repository, organization, or community you agree to abide by its terms.
MIT Β© Titus Wormer
FAQs
estree (and esast) utility to serialize to JavaScript
The npm package estree-util-to-js receives a total of 1,540,856 weekly downloads. As such, estree-util-to-js popularity was classified as popular.
We found that estree-util-to-js demonstrated a not healthy version release cadence and project activity because the last version was released a year ago.Β It has 2 open source maintainers 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
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.