Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Awilix | 3,072 | 294 | 342 | 2 months ago | 78 | October 12, 2023 | mit | TypeScript | ||
Extremely powerful Inversion of Control (IoC) container for Node.JS | ||||||||||
Jab | 941 | 2 days ago | 36 | November 22, 2023 | 15 | mit | C# | |||
C# Source Generator based dependency injection container implementation. | ||||||||||
Dryioc | 927 | 122 | 153 | 2 days ago | 449 | November 12, 2023 | 42 | mit | C# | |
DryIoc is fast, small, full-featured IoC Container for .NET | ||||||||||
Stronginject | 662 | 1 | 2 years ago | 296 | May 24, 2022 | 17 | mit | C# | ||
compile time dependency injection for .NET | ||||||||||
Swinjectstoryboard | 254 | 83 | 2 months ago | 15 | September 05, 2021 | 26 | mit | Swift | ||
Swinject extension for automatic dependency injection via Storyboard | ||||||||||
Swinjectautoregistration | 217 | 18 | 7 months ago | 10 | February 06, 2023 | 3 | mit | Swift | ||
Swinject extension to automatically register your services | ||||||||||
Autofac.annotation | 200 | 1 | 2 | 3 months ago | 6 | January 28, 2020 | mit | C# | ||
DI容器,依赖注入,AOP,动态代理等用注解来load autofac 摆脱代码或者xml配置和java的spring的注解注入一样的体验 | ||||||||||
Stashbox | 131 | 18 | 22 | 9 days ago | 367 | November 18, 2023 | mit | C# | ||
A lightweight, fast, and portable dependency injection framework for .NET-based solutions. | ||||||||||
Autofac.extras.quartz | 116 | 25 | 18 | 8 months ago | 181 | March 27, 2023 | 4 | mit | C# | |
Autofac integration for Quartz.Net | ||||||||||
Kickstart | 41 | 11 | 3 months ago | 72 | August 20, 2022 | 8 | mit | C# | ||
Application initialization helper |
Application start-up helper to initialize things like an IoC container, register mapping information or run a task.
Package | Version |
---|---|
KickStart | |
KickStart.Autofac | |
KickStart.AutoMapper | |
KickStart.DependencyInjection | |
KickStart.MongoDB | |
KickStart.Ninject | |
KickStart.SimpleInjector | |
KickStart.Unity |
The KickStart library is available on nuget.org via package name KickStart
.
To install KickStart, run the following command in the Package Manager Console
PM> Install-Package KickStart
More information about NuGet package available at https://nuget.org/packages/KickStart
Development builds are available on the feedz.io feed. A development build is promoted to the main NuGet feed when it's determined to be stable.
In your Package Manager settings add the following package source for development builds: https://f.feedz.io/loresoft/open/nuget/index.json
IServiceProvider
Kick.ServiceProvider
This example will scan the assembly containing UserModule. Then it will find all Autofac modules and register them with Autofac. Then, all AutoMapper profiles will be registered with Automapper. Finally, it will find all classes that implement IStartupTask
and run it.
Kick.Start(config => config
.IncludeAssemblyFor<UserModule>()
.UseAutofac()
.UseAutoMapper()
.UseStartupTask()
);
Pass data to the startup modules
Kick.Start(config => config
.Data("environment", "debug")
.Data(d =>
{
d["key"] = 123;
d["server"] = "master";
})
);
IStartupTask
Module
classes and creates the containerProfile
classesIDependencyInjectionRegistration
instances for Microsoft.Extensions.DependencyInjectionBsonClassMap
classes with MongoDB serializationNinjectModule
classes and creates an IKernal
ISimpleInjectorRegistration
instances allowing container registrationIUnityRegistration
instances allowing container registrationThe StartupTask extension allows running code on application start-up. To use this extension, implement the IStartupTask
interface. Use the Priority
property to control the order of execution.
Basic usage
Kick.Start(config => config
.IncludeAssemblyFor<UserModule>() // where to look for tasks
.UseStartupTask() // include startup tasks in the Kick Start
);
Run a delegate on startup
Kick.Start(config => config
.IncludeAssemblyFor<UserModule>()
.UseAutofac() // init Autofac or any other IoC as container
.UseStartupTask(c => c =>
{
c.Run((services, data) =>
{
//do work here
});
})
);
The Autofac extension allows registration of types to be resolved. The extension also creates a default container and sets it to the Kick.Container
singleton for access later.
Basic usage
Kick.Start(config => config
.IncludeAssemblyFor<UserRepository>() // where to look for tasks
.UseAutofac() // initialize Autofac
);
Use with ASP.NET MVC
Kick.Start(c => c
.IncludeAssemblyFor<UserModule>()
.UseAutofac(a => a
.Initialize(b => b.RegisterControllers(typeof(MvcApplication).Assembly)) // register all controllers
.Container(r => DependencyResolver.SetResolver(new AutofacDependencyResolver(r))) // set asp.net resolver
)
.UseAutoMapper()
.UseMongoDB()
.UseStartupTask()
);
To install Autofac extension, run the following command in the Package Manager Console
PM> Install-Package KickStart.Autofac
The DependencyInjection extension allows using Microsoft.Extensions.DependencyInjection for depenancy injection.
Basic Usage
Kick.Start(config => config
.LogTo(_output.WriteLine)
.IncludeAssemblyFor<UserRepository>() // where to look
.UseDependencyInjection() // initialize DependencyInjection
);
Integrate with asp.net core 2.0
public class Startup
{
public Startup(IConfiguration configuration)
{
Configuration = configuration;
}
public IConfiguration Configuration { get; }
// This method gets called by the runtime. Use this method to add services to the container.
public void ConfigureServices(IServiceCollection services)
{
// this will auto register logging and run the DependencyInjection startup
services.KickStart(c => c
.IncludeAssemblyFor<UserRepository>() // where to look
.Data("configuration", Configuration) // pass configuration to all startup modules
.Data("hostProcess", "web") // used for conditional registration
.UseStartupTask() // run startup task
);
}
}
To install DependencyInjection extension, run the following command in the Package Manager Console
PM> Install-Package KickStart.DependencyInjection
The SimpleInjector extension allows registration of types to be resolved by running all instances of ISimpleInjectorRegistration
. The extension also creates a default container and sets it to the Kick.Container
singleton for access later.
Basic usage
Kick.Start(config => config
.IncludeAssemblyFor<UserRepository>() // where to look
.UseSimpleInjector () // initialize SimpleInjector
);
Using SimpleInjector with ASP.NET WebAPI
Kick.Start(c => c
.LogTo(_logger.Debug)
.IncludeAssemblyFor<UserModule>()
.Data("hostProcess", "web")
.UseSimpleInjector(s => s
.Verify(VerificationOption.VerifyOnly)
.Initialize(container =>
{
container.Options.DefaultScopedLifestyle = new WebApiRequestLifestyle();
container.RegisterWebApiControllers(httpConfiguration); // register all controllers
})
.Container(container =>
{
httpConfiguration.DependencyResolver = new SimpleInjectorWebApiDependencyResolver(container); // set asp.net resolver
})
)
.UseStartupTask()
);
To install SimpleInjector extension, run the following command in the Package Manager Console
PM> Install-Package KickStart.SimpleInjector
The Unity extension allows registration of types to be resolved by running all instances of IUnityRegistration
. The extension also creates a default container and sets it to the Kick.Container
singleton for access later.
Basic usage
Kick.Start(config => config
.IncludeAssemblyFor<UserRepository>() // where to look
.UseUnity () // initialize Unity
);
To install Unity extension, run the following command in the Package Manager Console
PM> Install-Package KickStart.Unity
Example of bootstraping and logging with xUnit tests.
public class StartupTaskStarterTest
{
private readonly ITestOutputHelper _output;
public StartupTaskStarterTest(ITestOutputHelper output)
{
_output = output;
// bootstrap project
Kick.Start(config => config
.LogTo(_output.WriteLine)
.Data("environment", "test") // pass data for conditional registration
.IncludeAssemblyFor<UserRepository>()
.UseSimpleInjector () // initialize SimpleInjector
.UseStartupTask()
);
}
[Fact]
public void RunTest()
{
var userRepository = Kick.ServiceProvider.GetService<IUserRepository>();
Assert.NotNull(userRepository);
// more tests
}
}
KickStart has a generic service registration abstraction. This allows for the creation of a generic class module that registers services for dependency injection that is container agnostic.
Example module to register services
public class UserServiceModule : IServiceModule
{
public void Register(IServiceRegistration services, IDictionary<string, object> data)
{
services.RegisterSingleton<IConnection, SampleConnection>();
services.RegisterTransient<IUserService, UserService>(c => new UserService(c.GetService<IConnection>()));
// register all types that are assignable to IService
services.RegisterSingleton(r => r
.Types(t => t.AssignableTo<IService>())
.As(s => s.Self().ImplementedInterfaces())
);
// register all types that are assignable to IVehicle
services.RegisterSingleton(r => r
.Types(t => t.AssignableTo<IVehicle>())
.As(s => s.Self().ImplementedInterfaces())
);
}
}
Context
. Property Assemblies changed to Types.IContainerAdaptor
and changed to use IServiceProvider
insteadKick.Container
to Kick.ServiceProvider
Action<string>
delegateIStartupTask.Run
to IStartupTask.RunAsync
IServiceModule
and IServiceRegistration
to abstract service/container registration