Eutherion.Text.Json 1.5.1

dotnet add package Eutherion.Text.Json --version 1.5.1
NuGet\Install-Package Eutherion.Text.Json -Version 1.5.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Eutherion.Text.Json" Version="1.5.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Eutherion.Text.Json --version 1.5.1
#r "nuget: Eutherion.Text.Json, 1.5.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Eutherion.Text.Json as a Cake Addin
#addin nuget:?package=Eutherion.Text.Json&version=1.5.1

// Install Eutherion.Text.Json as a Cake Tool
#tool nuget:?package=Eutherion.Text.Json&version=1.5.1

Eutherion.Text.Json

Lightweight Json parser with error correction and recovery.

It accomplishes this by:

  • Only allocating bare syntactic structures when parsing, maximizing reuse of existing instances with a shared length ('Green' classes).
  • Lazily creating full syntax nodes when they are actually needed.
  • Not storing references to the source string, and only taking substrings from it to create meaningful values.
  • Incorporating syntactical errors into special types of syntax nodes.

Note that this implementation is stack-based, with the disadvantage that it imposes a maximum depth to the syntax tree. This makes it useful for parsing e.g. settings files, but not for deeply nested data structures.

This implementation is fully tested, however does not expose a feature-complete public API. In particular, it is not possible to create syntax trees from scratch that contain all information necessary to serialize to Json.

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 is compatible. 
.NET Standard netstandard2.1 is compatible. 
.NET Framework net472 is compatible.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.5.1 138 9/9/2023
1.5.0 132 8/27/2023
1.4.0 126 7/30/2023
0.1.0 204 10/19/2022