SkinnyJson 2.8.1

dotnet add package SkinnyJson --version 2.8.1
NuGet\Install-Package SkinnyJson -Version 2.8.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="SkinnyJson" Version="2.8.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SkinnyJson --version 2.8.1
#r "nuget: SkinnyJson, 2.8.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 SkinnyJson as a Cake Addin
#addin nuget:?package=SkinnyJson&version=2.8.1

// Install SkinnyJson as a Cake Tool
#tool nuget:?package=SkinnyJson&version=2.8.1

SkinnyJson

Based on FastJson: https://github.com/mgholam/fastJSON

Nuget:

The default is usually ahead of the strong-named version. If you need an updated version of the Strong-Named package, please open a Github issue.

SkinnyJson has a simple interface, and handles interface based serialisation better than most other .Net json libraries. SkinnyJson was designed to handle Event Store messages, and is tuned to deal with situations where a common interface declaration is available, but the original serialised objects/types are not available.

To adjust settings globally, look in SkinnyJson.Json.DefaultParameters

Things SkinnyJson can do that most .Net serialisers don't

  • Decode directly to an interface: IThing x = Json.Defrost<IThing>(...). You don't need to create a concrete container.
  • Serialise to and from static classes: var jsonStr = Json.Freeze(typeof(MyStatic)); Json.DefrostTo(typeof(MyStatic), jsonStr);
  • Reformat huge documents: Json.BeautifyStream(fileStreamIn, Encoding.ASCII, fileStrealOutput, Encoding.UTF8);

Common use cases:

Deserialise a known type:

IMyInterface values = Json.Defrost<IMyInterface>(jsonString);

Serialise any object to JSON:

string jsonString = Json.Freeze(myObject);

Pretty print a JSON string: (there is also a streaming version for very large files)

var newString = Json.Beautify(oldString);

Create a deep copy of an object:

var newObject = Json.Clone(oldObject);

Deserialise to a dynamic type for unknown schemas:

dynamic obj = Json.DefrostDynamic(jsonString);
Console.WriteLine(obj.MyProperty.MyArray[4].Prop2()); // use `()` to read a value.
var missing = obj.NotHere.child.grandchild(); // results in null. Dynamic does null propagation.

obj.MyProperty.other = "hello"; // can update properties
var updatedJson = Json.Freeze(obj); // and serialise the result

Inline editing:

string newJson = Json.Edit(oldJson, d => {
    d.myProperty.updated = true;
    d.info.updates[0].dateTime = DateTime.Now.ToString();
});

See the test cases for deeper examples

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  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 netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  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.

This package has no dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on SkinnyJson:

Package Downloads
BearBonesMessaging

BearBones messaging: lower-level framework, part of a contract-interface based distributed event framework for .Net

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.8.1 325 2/27/2024
2.8.0 472 2/8/2024
2.7.5 217 7/10/2023
2.7.0 142 7/4/2023
2.6.0 130 6/22/2023
2.5.0 154 5/19/2023
2.4.2 230 3/13/2023
2.4.1 278 12/13/2022
2.4.0 282 12/13/2022
2.3.0 270 12/12/2022
2.2.3 433 9/5/2022
2.2.2 391 9/2/2022
2.2.1 399 9/2/2022
2.1.1 4,616 5/30/2022
2.1.0 472 3/7/2022
2.0.3 449 3/4/2022
2.0.2 402 5/24/2021
2.0.1 373 5/17/2021
2.0.0 3,257 12/1/2020
1.8.0 510 11/3/2020
1.7.0 1,611 7/3/2019
1.6.9 1,583 5/22/2019
1.6.8 1,169 5/22/2019
1.6.5 4,424 1/10/2019
1.6.4 717 1/10/2019
1.6.3 2,158 12/13/2018
1.6.2 746 11/24/2018
1.6.1 755 11/23/2018
1.6.0 732 11/23/2018
1.5.5 753 11/7/2018
1.5.0 837 8/24/2018
1.4.0 863 8/24/2018
1.3.2 848 8/14/2018
1.3.1 877 8/14/2018
1.3.0 926 7/25/2018
1.2.0 873 7/23/2018
1.0.3 998 6/27/2018
1.0.2 1,427 8/26/2014
1.0.1 1,070 8/20/2014
1.0.0 1,093 8/20/2014

Fix edge case with nullable numeric enum conversion