Description
.NEXT (dotNext) is a set of powerful libaries aimed to improve development productivity and extend .NET API with unique features. Some of these features are planned in future releases of .NET platform but already implemented in the library:
.NEXT alternatives and similar packages
Based on the "Misc" category.
Alternatively, view .NEXT alternatives based on common mentions on social networks and blogs.
-
Polly
Polly is a .NET resilience and transient-fault-handling library that allows developers to express policies such as Retry, Circuit Breaker, Timeout, Bulkhead Isolation, and Fallback in a fluent and thread-safe manner. From version 6.0.1, Polly targets .NET Standard 1.1 and 2.0+. -
Humanizer
Humanizer meets all your .NET needs for manipulating and displaying strings, enums, dates, times, timespans, numbers and quantities -
Coravel
Near-zero config .NET library that makes advanced application features like Task Scheduling, Caching, Queuing, Event Broadcasting, and more a breeze! -
Hashids.net
A small .NET package to generate YouTube-like hashes from one or many numbers. Use hashids when you do not want to expose your database ids to the user. -
Scientist.NET
A .NET library for carefully refactoring critical paths. It's a port of GitHub's Ruby Scientist library -
WorkflowEngine
WorkflowEngine.NET - component that adds workflow in your application. It can be fully integrated into your application, or be in the form of a specific service (such as a web service). -
HidLibrary
This library enables you to enumerate and communicate with Hid compatible USB devices in .NET. -
DeviceId
A simple library providing functionality to generate a 'device ID' that can be used to uniquely identify a computer. -
Warden
Define "health checks" for your applications, resources and infrastructure. Keep your Warden on the watch. -
Aeron.NET
Efficient reliable UDP unicast, UDP multicast, and IPC message transport - .NET port of Aeron -
ByteSize
ByteSize is a utility class that makes byte size representation in code easier by removing ambiguity of the value being represented. ByteSize is to bytes what System.TimeSpan is to time. -
DeviceDetector.NET
The Universal Device Detection library will parse any User Agent and detect the browser, operating system, device used (desktop, tablet, mobile, tv, cars, console, etc.), brand and model. -
Mediator.Net
A simple mediator for .Net for sending command, publishing event and request response with pipelines supported -
https://github.com/minhhungit/ConsoleTableExt
A fluent library to print out a nicely formatted table in a console application C# -
Valit
Valit is dead simple validation for .NET Core. No more if-statements all around your code. Write nice and clean fluent validators instead! -
FormHelper
ASP.NET Core - Transform server-side validations to client-side without writing any javascript code. (Compatible with Fluent Validation) -
SolidSoils4Arduino
C# .NET - Arduino library supporting simultaneous serial ASCII, Firmata and I2C communication -
Validot
Validot is a performance-first, compact library for advanced model validation. Using a simple declarative fluent interface, it efficiently handles classes, structs, nested members, collections, nullables, plus any relation or combination of them. It also supports translations, custom logic extensions with tests, and DI containers. -
NaturalSort.Extension
๐ Extension method for StringComparison that adds support for natural sorting (e.g. "abc1", "abc2", "abc10" instead of "abc1", "abc10", "abc2"). -
Outcome.NET
Never write a result wrapper again! Outcome.NET is a simple, powerful helper for methods that return a value, but sometimes also need to return validation messages, warnings, or a success bit. -
SystemTextJson.JsonDiffPatch
High-performance, low-allocating JSON object diff and patch extension for System.Text.Json. Support generating patch document in RFC 6902 JSON Patch format.
InfluxDB - Purpose built for real-time analytics at any scale.
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of .NEXT or a related project?
Popular Comparisons
README
.NEXT
.NEXT (dotNext) is a set of powerful libraries aimed to improve development productivity and extend .NET API with unique features. Some of these features are planned in future releases of .NET platform but already implemented in the library:
Proposal | Implementation |
---|---|
Interop between function pointer and delegate | DelegateHelpers factory methods |
Check if an instance of T is default(T) | IsDefault() method |
Concept Types | Documentation |
Expression Trees covering additional language constructs, i.e. foreach , await , patterns, multi-line lambda expressions |
Metaprogramming |
Async Locks | Documentation |
High-performance general purpose Write-Ahead Log | Persistent Log |
Memory-mapped file as Memory<byte> | MemoryMappedFileExtensions |
Memory-mapped file as ReadOnlySequence<byte> | ReadOnlySequenceAccessor |
Quick overview of additional features:
- Attachment of user data to an arbitrary objects
- Automatic generation of Equals/GetHashCode for an arbitrary type at runtime which is much better that Visual Studio compile-time helper for generating these methods
- Extended set of atomic operations. Inspired by AtomicInteger and friends from Java
- Fast Reflection
- Fast conversion of bytes to hexadecimal representation and vice versa using
ToHex
andFromHex
methods from Span static class ManualResetEvent
,ReaderWriterLockSlim
and other synchronization primitives now have their asynchronous versions- Atomic memory access operations for arbitrary value types including enums
- PipeExtensions provides high-level I/O operations for pipelines such as string encoding and decoding
- Various high-performance growable buffers for efficient I/O
- Fully-featured Raft implementation
All these things are implemented in 100% managed code on top of existing .NET API without modifications of Roslyn compiler or CoreFX libraries.
Quick Links
Documentation for older versions:
What's new
Release Date: 06-07-2021
DotNext 3.2.0
- Added
TryDetachBuffer
method toBufferWriterSlim<T>
type that allows to flow buffer in async scenarios - Added
TryGetWrittenContent
method toSparseBufferWriter<T>
that allows to obtain the written buffer if it is represented by contiguous memory block - Added
OptionalConverterFactory
class that allows to useOptional<T>
data type in JSON serialization. This type allows to hide data from JSON if the property of field has undefined value. Useful for designing DTOs for REST API with partial resource updates via PATCH method. Available only when target is .NET 5. - Added
TryResize
andResize
methods toMemoryOwner<T>
value type - Updated dependencies
DotNext.Metaprogramming 3.2.0
- Call site optimization for
AsDynamic()
extension method that allows to construct LINQ expression tree on-the-fly using C# expressions - Fixed 70
DotNext.Reflection 3.2.0
- Respect volatile modifier when reading/writing field
DotNext.Unsafe 3.2.0
- Added additional overloads to
Pointer<T>
value type with nuint parameter
DotNext.Threading 3.2.0
- Added
EnsureState
toAsyncTrigger
class as synchronous alternative with fail-fast behavior
DotNext.IO 3.2.0
- Improved performance of all
IAsyncBinaryReader
interface implementations - Added
TryReadBlock
extension method that allows to read the block of memory from pipe synchronously - Updated dependencies
DotNext.Net.Cluster 3.2.0
- Smallish improvements of I/O operations related to log entries
- Improved performance of background compaction algorithm
- Persistent WAL now supports concurrent read/write. Appending of new log entries to the log tail doesn't suspend readers anymore
- Added event id and event name to all log messages
DotNext.AspNetCore.Cluster 3.2.0
- Improved performance of log entries decoding on receiver side
- Added event id and event name to all log messages
Changelog for previous versions located [here](./CHANGELOG.md).
Release & Support Policy
The libraries are versioned according with Semantic Versioning 2.0.
Version | .NET compatibility | Support Level |
---|---|---|
0.x | .NET Standard 2.0 | Not Supported |
1.x | .NET Standard 2.0 | Not Supported |
2.x | .NET Standard 2.1 | Not Supported |
3.x | .NET Standard 2.1, .NET 5 | Active Development |
Maintenance support level means that new releases will contain bug fixes only.
Development Process
Philosophy of development process:
- All libraries in .NEXT family are available for the wide range of .NET implementations: Mono, Xamarin, .NET Core, .NET
- Compatibility with AOT compiler should be checked for every release
- Minimize set of dependencies
- Provide high-quality documentation
- Stay cross-platform
- Provide benchmarks
*Note that all licence references and agreements mentioned in the .NEXT README section above
are relevant to that project's source code only.