Vicodin

pub build license

Vicodin is a very simple and yet very useful pure Dart dependency container.

Getting Started

/// register a module with a set of dependencies 
final module = moduleOf((r) {
  r.singleton<Person>((c) => Person("Vicodin"));
});

/// combine a few modules to a single component
final component = componentOf(import: [module]);

/// get the required dependency from the component
final Person person1 = component.resolve<Person>();
final Person person2 = component.resolve<Person>();
expect(identical(person1, person2), true);

Libraries

vicodin