esprima

ECMAScript parsing infrastructure for multipurpose analysis (by jquery)

Esprima Alternatives

Similar projects and alternatives to esprima

  1. vite

    912 esprima VS vite

    Next generation frontend tooling. It's fast!

  2. InfluxDB

    InfluxDB – Built for High-Performance Time Series Workloads. InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.

    InfluxDB logo
  3. SvelteKit

    641 esprima VS SvelteKit

    web development, streamlined (by sveltejs)

  4. webpack

    369 esprima VS webpack

    A bundler for javascript and friends. Packs many modules into a few bundled assets. Code Splitting allows for loading parts of the application on demand. Through "loaders", modules can be CommonJs, AMD, ES6 modules, CSS, Images, JSON, Coffeescript, LESS, ... and your custom stuff.

  5. vike

    66 esprima VS vike

    The Modular Framework β€” Next.js & Nuxt alternative for unprecedented flexibility and stability.

  6. trunk

    58 esprima VS trunk

    Build, bundle & ship your Rust WASM application to the web.

  7. astexplorer

    50 esprima VS astexplorer

    A web tool to explore the ASTs generated by various parsers.

  8. jscodeshift

    28 esprima VS jscodeshift

    A JavaScript codemod toolkit.

  9. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
  10. sysbox

    24 esprima VS sysbox

    An open-source, next-generation "runc" that empowers rootless containers to run workloads such as Systemd, Docker, Kubernetes, just like VMs.

  11. the-super-tiny-compiler

    :snowman: Possibly the smallest compiler ever

  12. gaiman

    16 esprima VS gaiman

    Gaiman: Text based game engine and programming language

  13. esbuild-loader

    14 esprima VS esbuild-loader

    πŸ’  Speed up your Webpack with esbuild ⚑️

  14. babel-handbook

    :blue_book: A guided handbook on how to use Babel and how to create plugins for Babel.

  15. escodegen

    3 esprima VS escodegen

    ECMAScript code generator

  16. peggy

    11 esprima VS peggy

    Peggy: Parser generator for JavaScript

  17. wmr

    11 esprima VS wmr

    πŸ‘©β€πŸš€ The tiny all-in-one development tool for modern web apps.

  18. picoc

    A very small C interpreter

  19. estree

    The ESTree Spec

  20. vite-plugin-vue2

    Discontinued Vue2 plugin for Vite

  21. estraverse

    2 esprima VS estraverse

    ECMAScript JS AST traversal functions

  22. astx

    1 esprima VS astx

    Super powerful structural search and replace for JavaScript and TypeScript to automate your refactoring

  23. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better esprima alternative or higher similarity.

esprima discussion

Log in or Post with

esprima reviews and mentions

Posts with mentions or reviews of esprima. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2025-06-16.
  • Advanced Techniques for Parsing and Interpreting JavaScript Code
    3 projects | dev.to | 16 Jun 2025
    For more comprehensive parsing, developers have commonly turned to libraries like Acorn and Esprima.
  • Running Untrusted JavaScript Code
    3 projects | dev.to | 21 Jul 2024
    I'm particularly fond of Firecracker, but it’s a bit of work to set up, so if you cannot afford the time yet, you want to be on the safe side, do a combination of static analysis and time-boxing execution. You can use esprima to parse the code and check for any malicious act.
  • ESLint: under the hood
    4 projects | dev.to | 7 Nov 2023
    Focusing again on ESLint, the parser used by the linter is called Espree. This is an in-house parser built by the ESLint folks to fully support ECMAScript 6 and JSX on top of the already existing Esprima. The Espree module provide APIs for both tokenization and parsing that you can easily test out.
  • Why you don’t need TypeScript
    1 project | /r/typescript | 19 May 2023
    For TypeScript we have used AST transforms from their compiler API, and for plain JavaScript we did a similar thing using ESPrima. This helped us implement some simple optimizations like stream fusion (combining .filter and .map into a single operation) or avoiding extra object allocations in vector math, which led to nice performance improvements in code that does heavy computation (we process large amounts of data on the server and store results of physics simulations).
  • Algorithm to simplify a 100-variable Boolean expression?
    1 project | /r/algorithms | 4 Jun 2022
    I used ESPrima, but any parser would do in this case. I then wrote a simple function to extract all "atomic" non-boolean expressions from it.
  • How to make your own programming language in JavaScript
    6 projects | dev.to | 7 May 2022
    AST is an acronym for Abstract Syntax Tree. It's the way to represent code in a format that tools can understand. Usually in form of tree data structure. We will use AST in the format of an Esprima, which is a JavaScript parser that outputs AST.
  • What the heck is an Abstract Syntax Tree (AST) ?
    5 projects | dev.to | 23 Apr 2022
    esprima
  • Abstract Syntax Trees: They're Actually Used Everywhere -- But What Are They?
    4 projects | dev.to | 17 Nov 2021
    Create an AST: Esprima
  • We Switched from Webpack to Vite
    15 projects | news.ycombinator.com | 28 Apr 2021
    The thread was originally about CRA vs Vite size on disk (or implicitly, if we're applying it to real world applications, network cost in CI job startup times). And like I said, surrogate pairs don't apply to ASCII.

    See this[0] for reference. Note how the first byte must fall within a certain range in order to signal being a surrogate pair. This fact is taken advantage of by JS parsers to make parsing of ASCII code faster by special casing that range, since checking for a valid character in the entire unicode range is quite a bit more expensive[1].

    [0] https://github.com/jquery/esprima/blob/0911ad869928fd218371b...

    [1] https://github.com/jquery/esprima/blob/0911ad869928fd218371b...

  • How to create your own language that compile to JavaScript
    3 projects | /r/javascript | 15 Apr 2021
    If you want to learn more about parsing, reading the code of an actual recursive parser might be a better idea. Esprima is a decent place to start if you're interested in JS grammar. Then you can look at the babel handbook to learn more about AST transformations. From there, the literature gets quite a bit more heavy. If you get this far and are willing to push further, you'll probably want to grab yourself a copy of the dragon book at a minimum.
  • A note from our sponsor - InfluxDB
    www.influxdata.com | 23 Jun 2025
    InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now. Learn more β†’

Stats

Basic esprima repo stats
10
7,093
0.0
about 2 years ago

Sponsored
InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
www.influxdata.com

Did you know that TypeScript is
the 1st most popular programming language
based on number of references?