typedi icon indicating copy to clipboard operation
typedi copied to clipboard

Simple yet powerful dependency injection tool for JavaScript and TypeScript.

Results 75 typedi issues
Sort by recently updated
recently updated
newest added

Bumps [eslint](https://github.com/eslint/eslint) from 8.57.0 to 9.29.0. Release notes Sourced from eslint's releases. v9.29.0 Features f686fcb feat: add ecmaVersion: 2026, parsing using and await using (#19832) (Milos Djermanovic) 19cdd22 feat: prune...

dependencies
javascript

### Description versions - "reflect-metadata": "^0.2.2", "type-graphql": "^2.0.0-rc.2", "typedi": "^0.10.0" **Minimal code-snippet showcasing the problem** ```ts import { Query, Resolver } from 'type-graphql'; import { Service } from 'typedi'; import...

type: fix
status: needs triage

Bumps [prettier](https://github.com/prettier/prettier) from 2.8.8 to 3.5.3. Release notes Sourced from prettier's releases. 3.5.3 🔗 Changelog 3.5.2 🔗 Changelog 3.5.1 🔗 Changelog 3.5.0 diff 🔗 Release note 3.4.2 🔗 Changelog 3.4.1...

dependencies

Right now i have my core project. Lets say it has this class. ``` @Service() export class LoggerManager extends AbstractManager {} ``` and then my main project that is importing...

type: question

### Description This test fails: ```ts test('reset should clear container', () => { assert.ok(!typedi.Container.has('foobar'), "Should be no foobar in container."); typedi.Container.set('foobar', 'some value'); assert.ok(typedi.Container.has('foobar'), "Foobar should be in container."); typedi.Container.reset();...

type: fix
status: needs triage