0.6.1 • Published 2 years ago

@darkyzhou/redi v0.6.1

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

redi

Stars Downloads License Codecov

A dependency library for TypeScript and JavaScript, along with a binding for React.

Overview

import { Inject } from '@wendellhu/redi'

class AuthService {
    public getCurrentUserInfo(): UserInfo {}
}

class FileListService {
    constructor(@Inject(AuthService) private readonly authService: AuthService) {}

    public getUserFiles(): Promise<Files> {
        const currentUser = this.authService.getCurrentUserInfo()
    }
}

const injector = new Injector([[AuthService], [FileListService]])

injector.get(AuthService)

View full documentation on redi.wendell.fun.

Links

Users

  • Team Lark at ByteDance

License

MIT. Copyright 2021-2022 Wendell Hu.