This package has been deprecated

Author message:

This package is no longer maintained. If you liked it, then check out @mscharley/dot for a replacement.

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

6.0.2 • Public • Published

inversify-token

npm CircleCI

Source: https://github.com/mscharley/inversify-token
Author: Matthew Scharley
Contributors: See contributors on GitHub
Bugs/Support: Github Issues
Copyright: 2021
License: MIT license
Status: Active

Synopsis

This library provides simpler, more type-safe options for injecting values using Inversify.

Installation

$ npm i inversify-token

Usage

Modified from the InversifyJS readme.

// Declare your interfaces as normal.

// file types.ts
import { Token, TokenType } from "inversify-token";
import { Warrior, Weapon, ThrowableWeapon } from "./interfaces";

const WarriorToken = new Token<Warrior>(Symbol.for("Warrior"));
type WarriorToken = TokenType<typeof WarriorToken>;
const WeaponToken = new Token<Weapon>(Symbol.for("Weapon"));
type WeaponToken = TokenType<typeof WeaponToken>;
const ThrowableWeaponToken = new Token<ThrowableWeapon>(
  Symbol.for("ThrowableWeapon")
);
type ThrowableWeaponToken = TokenType<typeof ThrowableWeaponToken>;

export {
  WarriorToken as Warrior,
  WeaponToken as Weapon,
  ThrowableWeaponToken as ThrowableWeapon,
};

// file entities.ts
import { injectable } from "inversify";
import { injectToken } from "inversify-token";
import * as TYPES from "./types";

@injectable()
class Ninja implements Warrior {
  public constructor(
    @injectToken(TYPES.Weapon) private _katana: TYPES.Weapon,
    @injectToken(TYPES.ThrowableWeapon) private _shuriken: TYPES.ThrowableWeapon
  ) {}

  public fight() {
    return this._katana.hit();
  }
  public sneak() {
    return this._shuriken.throw();
  }
}

// file inversify.config.ts
import { getToken, tokenBinder } from "inversify-token";

const myContainer = new Container();
const bindToken = tokenBinder(myContainer.bind.bind(myContainer));
bindToken(TYPES.Warrior).to(Ninja);
bindToken(TYPES.Weapon).to(Katana);
bindToken(TYPES.ThrowableWeapon).to(Shuriken);
const warrior = getToken(container, TYPES.Warrior);

// file inversify.module.ts
import { getToken, TokenContainerModule } from "inversify-token";

const myContainer = new Container();
const module = new TokenContainerModule((bindToken) => {
  bindToken(TYPES.Warrior).to(Ninja);
  bindToken(TYPES.Weapon).to(Katana);
  bindToken(TYPES.ThrowableWeapon).to(Shuriken);
});
myContainer.load(module);
const warrior = getToken(container, TYPES.Warrior);

Readme

Keywords

none

Package Sidebar

Install

npm i inversify-token

Weekly Downloads

2,078

Version

6.0.2

License

MIT

Unpacked Size

22.1 kB

Total Files

11

Last publish

Collaborators

  • mscharley