
Security News
The Changelog Podcast: Practical Steps to Stay Safe on npm
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.
babel-parse-wild-code
Advanced tools
parse a file in a foreign directory with babel, using ambient babel config
Provides an easy-to-use API for parsing users' js/ts/tsx files using their project's installed Babel version and config.
This way it won't fail if they're using funky features like the smart pipeline operator. This is a big problem for codemod
tools; for example, jscodeshift would choke on the smart pipeline operator unless you pass a custom parser. I want my
codemod tools to just work.
Note: only Babel 7 is currently supported.
babel-parse-wild-code also improves performance. Until recently, doing require('@babel/core').loadOptionsAsync and passing that config
to a bunch of require('@babel/core').parseAsync calls didn't improve performance as expected; parseAsync was accidentally re-doing
a lot of the work that had already been done by loadOptionsAsync. That bug has been fixed since I reported it, but babel-parse-wild-code
works around this for older versions of Babel 7 by extracting the options for @babel/parser from the user's Babel config.
If babel-parse-wild-code fails to load @babel/core, @babel/parser, or the Babel config from the user's
project, it falls back to parsing with reasonable default options.
parseSync(file: string, options?: { encoding?: BufferEncoding } & ParserOptions): Fileimport { parseSync } from 'babel-parse-wild-code'
Parses the given file synchronously, returning the File node.
encoding defaults to utf8. The remaining options are passed to @babel/parser's parse function.
options.plugins will be merged with the resolved options for the file.
parseAsync(file: string, options?: { encoding?: BufferEncoding } & ParserOptions): Promise<File>import { parseAsync } from 'babel-parse-wild-code'
Parses the given file asynchronously, returning a Promise that will resolve to the File node.
encoding defaults to utf8. The remaining options are passed to @babel/parser's parse function.
options.plugins will be merged with the resolved options for the file.
clearCache(): voidInstances of @babel/core, @babel/parser and parser options are cached on a per-directory basis.
Calling clearCache() clears this cache, and deletes instances of @babel/core and @babel/parser
from require.cache.
You should probably do this before any bulk parsing operation. It would be nice to bust the cache automatically when the user's Babel version or config changes, but setting up the watchers would be complicated. Clearing the cache before you parse a bunch of files is simpler and won't have a huge impact on performance.
getParserSync(file: string, options?: ParserOptions): Parserimport { getParserSync } from 'babel-parse-wild-code'
Gets a fully-configured parser for the given file synchronously.
options is additional options for @babel/parser's parse function. For example when working
with jscodeshift or recast, you should pass { tokens: true }.
options.plugins will be merged with the resolved options for the file.
getParserAsync(file: string, options?: ParserOptions): Promise<Parser>import { getParserSync } from 'babel-parse-wild-code'
Gets a fully-configured parser for the given file asynchronously.
options is additional options for @babel/parser's parse function. For example when working
with jscodeshift or recast, you should pass { tokens: true }.
options.plugins will be merged with the resolved options for the file.
class Parserimport { Parser } from 'babel-parse-wild-code'
Type defs:
import * as defaultBabelParser from '@babel/parser'
type BabelParser = Pick<typeof defaultBabelParser, 'parse' | 'parseExpression'>
export class Parser {
  readonly babelParser: BabelParser
  readonly parserOpts: ParserOptions
  constructor(babelParser: BabelParser, parserOpts: ParserOptions)
  parse(code: string, parserOpts?: ParserOptions): t.File
  parseExpression(code: string, parserOpts?: ParserOptions): t.Expression
  bindParserOpts(parserOpts: ParserOptions): Parser
}
tsParserimport { tsParser } from 'babel-parse-wild-code'
The fallback parser used for .ts files.
tsxParserimport { tsxParser } from 'babel-parse-wild-code'
The fallback parser used for .tsx files.
jsParserimport { jsParser } from 'babel-parse-wild-code'
The fallback parser used for parsing .js files when babel-parse-wild-code failed to load Babel modules or config for the file's directory.
Note: this is the same as jsxParser, but jsxParser is exported for completeness.
jsxParserimport { jsxParser } from 'babel-parse-wild-code'
The fallback parser used for parsing .jsx files when babel-parse-wild-code failed to load Babel modules or config for the file's directory.
FAQs
parse a file in a foreign directory with babel, using ambient babel config
We found that babel-parse-wild-code demonstrated a not healthy version release cadence and project activity because the last version was released 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
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.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.