1.0.4 • Published 3 years ago

@herytz/ioc-container v1.0.4

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years ago

IOC Container

A simple IOC container

Install

Install via a package manager:

npm install @herytz/ioc-container

Usage

Create the container and these dependecies

import IOCContainer from '@herytz/ioc-container'
import { SimpleService } from './service/simpleService'

const TYPES = {
    SimpleService: 'SimpleService'
}

const container = new IOCContainer()

container.set(TYPES.SimpleService, new SimpleService())

export default container

Use the container everywhere

// Import statement

const simpleService = container.get<SimpleService>(TYPES.SimpleService)
1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago