esprimadotnet - Esprima 3.0.5-preview-89

Standard-compliant ECMAScript 2022 parser (also known as JavaScript).

PM> Install-Package Esprima -Version 3.0.5-preview-89 -Source https://www.myget.org/F/esprimadotnet/api/v3/index.json

Copy to clipboard

> nuget.exe install Esprima -Version 3.0.5-preview-89 -Source https://www.myget.org/F/esprimadotnet/api/v3/index.json

Copy to clipboard

> dotnet add package Esprima --version 3.0.5-preview-89 --source https://www.myget.org/F/esprimadotnet/api/v3/index.json

Copy to clipboard
<PackageReference Include="Esprima" Version="3.0.5-preview-89" />
Copy to clipboard
source https://www.myget.org/F/esprimadotnet/api/v3/index.json

nuget Esprima  ~> 3.0.5-preview-89
Copy to clipboard

> choco install Esprima --version 3.0.5-preview-89 --source https://www.myget.org/F/esprimadotnet/api/v2

Copy to clipboard
Import-Module PowerShellGet
Register-PSRepository -Name "esprimadotnet" -SourceLocation "https://www.myget.org/F/esprimadotnet/api/v2"
Install-Module -Name "Esprima" -RequiredVersion "3.0.5-preview-89" -Repository "esprimadotnet" -AllowPreRelease
Copy to clipboard

:mega: Important notices
If you are upgrading from an older version, please note that version 3 ships with numerous breaking changes to the public API because virtually all areas of the library have been revised.
Documentation of the previous major version is available here.

Build NuGet MyGet

Esprima .NET (BSD license) is a .NET port of the esprima.org project. It is a standard-compliant ECMAScript parser (also popularly known as JavaScript).

Features

API

Esprima can be used to perform lexical analysis (tokenization) or syntactic analysis (parsing) of a JavaScript program.

A simple C# example:

var parser = new JavaScriptParser();
var program = parser.ParseScript("const answer = 42");

You can control the behavior of the parser by initializing and passing a ParserOptions to the parser's constructor. (For the available options, see the XML documentation of the ParserOptions class.)

Instead of ParseScript, you may use ParseModule or ParseExpression to make the parser treat the input as an ES6 module or as a plain JavaScript expression respectively.

In case the input is syntactically correct, each of these methods returns the root node of the resulting abstract syntax tree (AST), which you can freely analyze or transform. The library provides the AstVisitor and AstRewriter visitor classes to help you with such tasks.

When the input contains a severe syntax error, a ParserException is thrown. By catching it you can get details about the error. There are syntax errors though which can be tolerated by the parser. Such errors are ignored by default. You can record them by setting ParserOptions.ErrorHandler to an instance of CollectingErrorHandler. Alternatively, you can set ParserOptions.Tolerant to false to make the parser throw exceptions also in the case of tolerable syntax errors.

The library is able to write the AST (except for comments) back to JavaScript code:

var code = program.ToJavaScriptString(format: true);

It is also possible to serialize the AST into a JSON representation:

var astJson = program.ToJsonString(indent: "    ");

Considering the example above this call will return the following JSON:

{
    "type": "Program",
    "body": [
        {
            "type": "VariableDeclaration",
            "declarations": [
                {
                    "type": "VariableDeclarator",
                    "id": {
                        "type": "Identifier",
                        "name": "answer"
                    },
                    "init": {
                        "type": "Literal",
                        "value": 42,
                        "raw": "42"
                    }
                }
            ],
            "kind": "const"
        }
    ],
    "sourceType": "script",
    "strict": false
}

Benchmarks

Here is a list of common JavaScript libraries and the time it takes to parse them, compared to the time it took for the same script using the original Esprima in Chrome.

Script Size Esprima .NET (.NET 6) Esprima (Chrome 116)
underscore-1.5.2 43 KB 1.0 ms 1.4 ms
backbone-1.1.0 59 KB 1.2 ms 1.6 ms
mootools-1.4.5 157 KB 5.2 ms 7.1 ms
jquery-1.9.1 262 KB 6.6 ms 7.9 ms
yui-3.12.0 330 KB 4.6 ms 6.9 ms
jquery.mobile-1.4.2 442 KB 10.0 ms 17.7 ms
angular-1.2.5 702 KB 8.5 ms 15.1 ms
  • .NETFramework 4.6.2
    • System.Memory (>= 4.5.5)
  • .NETStandard 2.0
    • System.Memory (>= 4.5.5)
  • .NETStandard 2.1
  • .NETFramework 4.6.2: 4.6.2.0
  • .NETStandard 2.0: 2.0.0.0
  • .NETStandard 2.1: 2.1.0.0

Owners

Sebastien Ros

Authors

Sebastien Ros

Project URL

https://github.com/sebastienros/esprima-dotnet

License

BSD-3-Clause

Tags

javascript, parser, ecmascript

Info

27 total downloads
3 downloads for version 3.0.5-preview-89
Download (484.49 KB)
Found on the current feed only

Package history

Version Size Last updated Downloads Mirrored?
3.0.5-preview-89 484.49 KB Mon, 19 Feb 2024 10:01:59 GMT 3
3.0.5-preview-88 484.43 KB Sat, 17 Feb 2024 09:23:20 GMT 0
3.0.5-preview-87 484.48 KB Wed, 31 Jan 2024 07:28:38 GMT 4
3.0.5-preview-86 484.48 KB Sat, 27 Jan 2024 08:55:07 GMT 1
3.0.0-preview-99 442.98 KB Fri, 19 Aug 2022 06:00:24 GMT 14
3.0.0-preview-98 443.25 KB Thu, 18 Aug 2022 22:48:32 GMT 1
3.0.0-preview-97 443.26 KB Thu, 18 Aug 2022 15:42:16 GMT 1
3.0.0-preview-96 445.53 KB Thu, 18 Aug 2022 08:26:59 GMT 1
3.0.0-preview-95 445.39 KB Wed, 17 Aug 2022 11:57:28 GMT 1
3.0.0-preview-94 445.27 KB Wed, 17 Aug 2022 05:18:21 GMT 1