https://github.com/js2me/mobidic
Dependency Injection Container Kit
https://github.com/js2me/mobidic
Last synced: 4 months ago
JSON representation
Dependency Injection Container Kit
- Host: GitHub
- URL: https://github.com/js2me/mobidic
- Owner: js2me
- License: mit
- Created: 2025-01-17T07:38:17.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-02-09T06:26:56.000Z (over 1 year ago)
- Last Synced: 2025-10-17T19:13:53.878Z (8 months ago)
- Language: TypeScript
- Size: 219 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

# Mobidic - Dependency Injection Container (WIP)
[![NPM version][npm-image]][npm-url] [![build status][github-build-actions-image]][github-actions-url] [![npm download][download-image]][download-url] [![bundle size][bundlephobia-image]][bundlephobia-url]
[npm-image]: http://img.shields.io/npm/v/mobidic.svg
[npm-url]: http://npmjs.org/package/mobidic
[github-build-actions-image]: https://github.com/js2me/mobidic/workflows/Build/badge.svg
[github-actions-url]: https://github.com/js2me/mobidic/actions
[download-image]: https://img.shields.io/npm/dm/mobidic.svg
[download-url]: https://npmjs.org/package/mobidic
[bundlephobia-url]: https://bundlephobia.com/result?p=mobidic
[bundlephobia-image]: https://badgen.net/bundlephobia/minzip/mobidic
```ts
import { container } from 'mobidic'
class Fruits {}
container.register(Fruits, { scope: 'transient' })
container.inject(Fruits)
```