@wendellhu/redi
TypeScript icon, indicating that this package has built-in type declarations

0.13.0 • Public • Published

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

  • Univer
  • Team Lark at ByteDance

License

MIT. Copyright 2021-present Wenzhao Hu.

Readme

Keywords

none

Package Sidebar

Install

npm i @wendellhu/redi

Weekly Downloads

982

Version

0.13.0

License

MIT

Unpacked Size

456 kB

Total Files

78

Last publish

Collaborators

  • wendellhu95