I want to create little CQRS framework for my Typescript Node.js project.
I wish to resolve class by it's name from inversify.js container. I need something like that:
let x = container.get("Foo");
where Foo is regular class and container is Container object from inversify.js.
Is it possible to do what I want?