luckystarry-ioc
TypeScript icon, indicating that this package has built-in type declarations

1.0.0 • Public • Published

luckystarry-ioc

一个仿 ASP.NET MVC 的 ServiceContainer 的 IoC 框架

Build Status Build Test Coverage Status Npm Status install size codebeat badge Known Vulnerabilities License Status

Install

npm i -S luckystarry-ioc

Usage

简单的使用如下所示:

// index.ts
import ioc, { Injectable } from 'luckystarry-ioc'
 
@Injectable()
class Foo {}
 
@Injectable()
class Bar {
  private _foo: Foo
  public constructor(foo: Foo) {
    this._foo = foo
  }
}
 
ioc.AddTransient(Foo)
ioc.AddTransient(Bar)
 
let foo = ioc.GetService(Foo)
let bar = ioc.GetService(Bar)

为了使用 注解 的特性,请在项目运行目录添加 tsconfig.json

{
  "compilerOptions": {
    "experimentalDecorators": true,
    "emitDecoratorMetadata": true
  }
}

LICENSE

MIT License

Copyright (c) 2018 SUN BO starry@vip.qq.com

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Readme

Keywords

Package Sidebar

Install

npm i luckystarry-ioc

Weekly Downloads

24

Version

1.0.0

License

MIT

Unpacked Size

36.2 kB

Total Files

40

Last publish

Collaborators

  • luckystarry