GoldenEye is a Full Stack framework written in .NET. The main goal of GoldenEye is to speed up your development process. It gathers most widely used frameworks in .NET world and pack them into a simple bootstrap Nuget packages. It also provide set of base classes, helpers, extensions that will help you with your daily work.
Complete Solution bootstrap - bottom up:
- CQRS and Domain Driven Development stack - sending and handling commands, queries, events (with usage of MediatR library),
- Messaging infrastructure - both internal based on MediatR and external with Kafka,
- CRUD Repositories and CRUD Application Services,
- Entity Framework (supports also Dapper, Marten)
- WebApi REST controllers,
- complete set up of dependency injection with automatic naming convention binding,
- AutoMapper preconfigured and automatic mappings registration,
- Validation flow with FluentValidation.NET,
- Examples of complete usage (Cinema Ticket Reservations),
- document database and event store support in Postgres with Marten framework,
- many more
Add package to your project:
dotnet add package GoldenEye
Install packages from the Nuget package manager:
Packages:
- GoldenEye - full DDD flow for CQRS, DDD development. Basing on MediatR library gives the Command, Queries, Events handling. Repositories, Services, CRUD, helpers, extensions that will boost your development
- GoldenEye.Marten - extension to GoldenEye that gives possibility to use Postgres as Document Database and Event Store - thanks to Marten library
- GoldenEye.WebApi - base classes for API development like CRUD controllers, registration helpers, and many more
- GoldenEye.EntityFramework - extensions to GoldenEye for EntityFramework development (EF repositories, etc.)
- GoldenEye.Dapper - extensions to GoldenEye for Dapper development (Dapper repositories, etc.)
- GoldenEye.ElasticSearch - extensions to GoldenEye for ElasticSearch development (ElasticSearch repositories, etc.)
- GoldenEye.Kafka - extensions to GoldenEye for Kafka development (Kafka producer, concumer, etc.)
Feel free to create an issue on GitHub. Contributions, pull requests are more than welcome!
💖 If this repository helped you - I'd be more than happy if you join the group of my official supporters at:
GoldenEye is Copyright © 2015-2021 Oskar Dudycz and other contributors under the MIT license.