injectofy
TypeScript icon, indicating that this package has built-in type declarations

0.1.0 • Public • Published

Injectofy

Injectofy is a TypeScript library designed to simplify dependency injection in your projects. It allows you to manage your dependencies easily, promoting better code organization and testability.

Installation

You can install Injectofy using Yarn:

yarn add injectofy

Or using npm:

npm install injectofy

Usage

Setting Up the Container

First, set up the container in your project. This is where you'll register your dependencies.

import { Container } from 'injectofy';

const container = new Container();

Registering Dependencies

You can register dependencies using the register method. You need to provide an identifier, the instance, and the class type.

Example Services

export class TestService {
  public getValue(): string {
    return 'Hello, Injectofy!';
  }
}

container.register('TestService', new TestService(), TestService);

Resolving Dependencies

You can resolve dependencies using the resolve method. NOTICE! : Service is of the type of the resolver automatically.

const service = container.resolve('TestService');

Readme

Keywords

none

Package Sidebar

Install

npm i injectofy

Weekly Downloads

0

Version

0.1.0

License

MIT

Unpacked Size

15.5 kB

Total Files

16

Last publish

Collaborators

  • johngjackson0