SkinnyJson 1.2.0
See the version list below for details.
dotnet add package SkinnyJson --version 1.2.0
NuGet\Install-Package SkinnyJson -Version 1.2.0
<PackageReference Include="SkinnyJson" Version="1.2.0" />
paket add SkinnyJson --version 1.2.0
#r "nuget: SkinnyJson, 1.2.0"
// Install SkinnyJson as a Cake Addin #addin nuget:?package=SkinnyJson&version=1.2.0 // Install SkinnyJson as a Cake Tool #tool nuget:?package=SkinnyJson&version=1.2.0
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
SkinnyJson has a cleaned-up interface, and handles interface based serialisation much better. 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 are not available.
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:
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 Framework | net40 is compatible. net403 was computed. net45 was computed. 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. |
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 |
Adding line comment support