SkinnyJson 2.7.5
See the version list below for details.
dotnet add package SkinnyJson --version 2.7.5
NuGet\Install-Package SkinnyJson -Version 2.7.5
<PackageReference Include="SkinnyJson" Version="2.7.5" />
paket add SkinnyJson --version 2.7.5
#r "nuget: SkinnyJson, 2.7.5"
// Install SkinnyJson as a Cake Addin #addin nuget:?package=SkinnyJson&version=2.7.5 // Install SkinnyJson as a Cake Tool #tool nuget:?package=SkinnyJson&version=2.7.5
SkinnyJson
Based on FastJson: https://github.com/mgholam/fastJSON
Nuget:
- Default: https://www.nuget.org/packages/SkinnyJson/
- Strong-named: https://www.nuget.org/packages/SkinnyJson/
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 | Versions 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. |
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 |
---|---|---|
3.0.9 | 290 | 10/11/2024 |
3.0.8 | 81 | 10/11/2024 |
3.0.7 | 120 | 10/5/2024 |
3.0.6 | 432 | 8/2/2024 |
3.0.5 | 267 | 7/26/2024 |
3.0.4 | 56 | 7/26/2024 |
3.0.3 | 301 | 6/29/2024 |
3.0.2 | 911 | 6/27/2024 |
3.0.1 | 226 | 6/14/2024 |
3.0.0 | 111 | 6/13/2024 |
2.8.5 | 249 | 5/22/2024 |
2.8.4 | 117 | 5/13/2024 |
2.8.3 | 2,886 | 4/22/2024 |
2.8.2 | 108 | 4/19/2024 |
2.8.1 | 448 | 2/27/2024 |
2.8.0 | 773 | 2/8/2024 |
2.7.5 | 255 | 7/10/2023 |
2.7.0 | 165 | 7/4/2023 |
2.6.0 | 156 | 6/22/2023 |
2.5.0 | 176 | 5/19/2023 |
2.4.2 | 258 | 3/13/2023 |
2.4.1 | 302 | 12/13/2022 |
2.4.0 | 308 | 12/13/2022 |
2.3.0 | 281 | 12/12/2022 |
2.2.3 | 468 | 9/5/2022 |
2.2.2 | 417 | 9/2/2022 |
2.2.1 | 423 | 9/2/2022 |
2.1.1 | 4,731 | 5/30/2022 |
2.1.0 | 508 | 3/7/2022 |
2.0.3 | 479 | 3/4/2022 |
2.0.2 | 430 | 5/24/2021 |
2.0.1 | 403 | 5/17/2021 |
2.0.0 | 3,304 | 12/1/2020 |
1.8.0 | 535 | 11/3/2020 |
1.7.0 | 1,648 | 7/3/2019 |
1.6.9 | 1,621 | 5/22/2019 |
1.6.8 | 1,200 | 5/22/2019 |
1.6.5 | 4,537 | 1/10/2019 |
1.6.4 | 742 | 1/10/2019 |
1.6.3 | 2,233 | 12/13/2018 |
1.6.2 | 773 | 11/24/2018 |
1.6.1 | 788 | 11/23/2018 |
1.6.0 | 760 | 11/23/2018 |
1.5.5 | 781 | 11/7/2018 |
1.5.0 | 868 | 8/24/2018 |
1.4.0 | 894 | 8/24/2018 |
1.3.2 | 867 | 8/14/2018 |
1.3.1 | 907 | 8/14/2018 |
1.3.0 | 957 | 7/25/2018 |
1.2.0 | 898 | 7/23/2018 |
1.0.3 | 1,025 | 6/27/2018 |
1.0.2 | 1,440 | 8/26/2014 |
1.0.1 | 1,094 | 8/20/2014 |
1.0.0 | 1,103 | 8/20/2014 |
Allow hex strings as a fallback to base64 when reading byte array