npm.io
1.1.1 • Published 11 years ago

angular-inject

Licence
MIT
Version
1.1.1
Deps
0
Vulns
0
Weekly
0

Build Status

angular-inject

A angular decorator for angular dependency injection.

Install

$ npm install --save angular-inject 

Usage

// ES2016 style
import {inject} from 'angular-inject'

// CommonJS style
let inject = require('angular-inject').inject;


@inject( ['$base64', 'foobar'] )
class FooBarController {
    constructor(){  /if needed you can also access the injected variables here also (ie constructor(base64, foobar) )  
        ....
        ....
        ....
    }
    
    bar() {
        this.$base64.encode('babba');
    }
}

Note

You need to run babel with the option 'es7.decorators' enabled.

Keywords