-
Hi,
I fund this repo on twitter because some users [mentioned InversifyJS](https://twitter.com/hugoccampos/status/756180622368993280) I keep an eye on mentions to InversifyJS because I'm it main auth…
-
## Expected Behavior
I'm preparing some nice features and improvements for 3.0 and this is one of the things I though...
We can use a Map to replace the current implementation of binding dictionary …
-
I want to create many button components with one base class.
And then get all buttons by using getAll().
But, looks like inversify wants me to decorate React.Component.
It thought error 'Uncaught Erro…
-
Hello,
I have one error on deployement. The revert in version 1.6 works (i don't test others versions, but tuesday night this worked too).
The error :
```
[RuntimeException] …
-
Just wanted to point out the following code, which can be found in **The Basics (TypeScript), step 2**:
```
import { injectable, inject } from "inversify";
import "reflect-metadata";
@injectable()
c…
-
I would like to default to singleton scope. Is it possible to do that so I don't have to always add `.inSingletonScope();` to the end of my declarations?
```
kernel.bind('foo').to(Foo).inSingletonSco…
-
Hi I'm the author of InnversifyJS we have an [official repository for examples](https://github.com/inversify/inversify-code-samples). As you can see [here](https://github.com/inversify/InversifyJS/iss…
-
Following this discussion: https://github.com/inversify/InversifyJS/issues/345#issuecomment-242015984
``` js
interface IIntl {
[k: string]: string
}
// module 1
kernel
.bind('intl')
.toC…
-
I would like to share my thoughts about a potential breaking change so we can all think about this an ensure that we get it right.
I think this feature is important because I believe that Async / …
-
## Expected Behavior
I would expect that InversifyJS provides us with the "dependencies path" which leads it to detect the circular dependency.
For instance, if I inject B into A, then C into B and …