Blogged: "ASP.NET Core 9 and IAsyncEnumerable - Async Streaming JSON and NDJSON From Blazor WebAssembly"
(https://www.tpeczek.com/2024/09/aspnet-core-9-and-iasyncenumerable.html)
zeehaven – a tiny tool to convert data for social media research: https://publicdatalab.org/2023/12/18/zeehaven-social-media-data/
drag and drop ndjson data gathered with @dmi's zeeschuimer tool, and download a csv file. ✨📦✨
#digitalmethods #csv #ndjson #tinytools #osint #newmedia #commodon #mediastudies #data #dataviz
My family of packages for streaming JSON objects with NDJSON over RESTful APIs in the .NET ecosystem gained a new member - one that brings support for ASP.NET Core Minimal APIs 🎉
#AspNetCore #MinimalApi #AsyncStreams #NDJSON
https://github.com/tpeczek/Ndjson.AsyncStreams/releases/tag/aspnetcore-v1.0.0
AspNetCore.JsonStreamer 0.2.0 is out now!
JSON Lines streaming serializer on ASP.NET Core, uses standard type of IAsyncEnumerable<T>.
It is simply to use, add AddNewtonsoftJsonStreamer() instead of AddNewtonsoftJson().
I've added requests cancellation capabilities to all (ASP.NET Core, Blazor, .NET Console) my NDJSON and JSON streaming samples.
Sample project for demonstrating how to use async streams and NDJSON to improve user experience by streaming JSON objects from server to client and client to server in .NET - GitHub - tpeczek/Demo....