https://github.com/samuelelorefice/syrette
Mirror of the gitea repository for Syrette. Refer to that one for issues.
https://github.com/samuelelorefice/syrette
c-sharp-library dependency-injection nuget-package
Last synced: 3 months ago
JSON representation
Mirror of the gitea repository for Syrette. Refer to that one for issues.
- Host: GitHub
- URL: https://github.com/samuelelorefice/syrette
- Owner: SamueleLorefice
- License: mit
- Created: 2025-09-21T14:35:15.000Z (4 months ago)
- Default Branch: master
- Last Pushed: 2025-10-01T17:06:21.000Z (3 months ago)
- Last Synced: 2025-10-01T19:06:21.872Z (3 months ago)
- Topics: c-sharp-library, dependency-injection, nuget-package
- Language: C#
- Homepage: https://www.nuget.org/packages/Syrette/
- Size: 26.4 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Syrette
_An extremely tiny dependency injection C# library_
Syrette is a minimalistic dependency injection library for C#.
It aims to provide a simple and efficient way to achieve dependency injections in your applications without the overhead of larger frameworks.
It is designed to be used in minimalistic applications, such as console applications or small services, where simplicity and ease of implementation are preferred over extensive feature sets and robust systems.
## Features
- **Lightweight**: Minimal codebase with no external dependencies. 1 class, the service container. You don't need anything else.
- **Simple API**: You register services using two methods (one for singletons, one for transients) and resolve them with one.
- **Supports Singleton and Transient lifetimes**: Choose between singleton (one instance per container) and transient (new instance per resolution) lifetimes for your services.
- **Greedy matching constructor selection**: When resolving a service, the constructor with the most parameters that can be satisfied by the container is chosen.
## Limitations
- **No support for scoped lifetimes**
- **No support for property injection or method injection.**
## Usage
````csharp
//istantiate your service container
var container = new Syrette.ServiceContainer();
//register your services
container.RegisterSingleton();
container.RegisterTransient();
//you can also use fluent syntax
container.RegisterSingleton()
.RegisterTransient()
.RegisterSingleton();
//resolve your services
var myService = container.GetService();
````
## Licence
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.