inversify-binding-decorators icon indicating copy to clipboard operation
inversify-binding-decorators copied to clipboard

An utility that allows developers to declare InversifyJS bindings using ES2016 decorators

Results 20 inversify-binding-decorators issues
Sort by recently updated
recently updated
newest added

## Description This adds `inRequestScope` support in `fluentProvide`. ## Related Issue inversify/InversifyJS/issues/678 ## How Has This Been Tested? * Updated tests that included `inSingletonScope` and `inTransientScope` to also include `inRequestScope`....

Could you please provide a full fluentProvide example? I have this kind of issue: ``` import { Container, decorate, inject, injectable, interfaces as inversifyInterfaces, named } from "inversify"; import {...

When you're using a class as the type, you get the error: `@typescript-eslint/no-use-before-define`. I'd rather not disable this line. Any chance to make `@provide()` without any arguments passed in default...

## The devDependency [updates](https://github.com/silverwind/updates) was updated from `8.5.3` to `9.0.0`. This version is **not covered** by your **current version range**. If you don’t accept this pull request, your project will...

greenkeeper

## The devDependency [mocha](https://github.com/mochajs/mocha) was updated from `6.2.0` to `6.2.1`. This version is **not covered** by your **current version range**. If you don’t accept this pull request, your project will...

greenkeeper

## The devDependency [@types/sinon](https://github.com/DefinitelyTyped/DefinitelyTyped) was updated from `7.0.13` to `7.5.0`. This version is **not covered** by your **current version range**. If you don’t accept this pull request, your project will...

greenkeeper

## The devDependency [sinon](https://github.com/sinonjs/sinon) was updated from `7.4.1` to `7.4.2`. This version is **not covered** by your **current version range**. If you don’t accept this pull request, your project will...

greenkeeper

## The devDependency [@types/chai](https://github.com/DefinitelyTyped/DefinitelyTyped) was updated from `4.2.0` to `4.2.1`. This version is **not covered** by your **current version range**. If you don’t accept this pull request, your project will...

greenkeeper

## The devDependency [@types/mocha](https://github.com/DefinitelyTyped/DefinitelyTyped) was updated from `5.2.7` to `7.0.0`. This version is **not covered** by your **current version range**. If you don’t accept this pull request, your project will...

greenkeeper

This PR allows decorators to default to class bindings when omitting the `serviceIdentifier` argument. I.E: ```typescript @provide() class Ninja { // ... } @fluentProvide().inSingletonScope().done() class Repository { // ... }...