babel-plugin-ng-annotate

0.3.2 • Public • Published

babel-plugin-ng-annotate - babel 6.x

How to install

$ npm install --save-dev babel-plugin-ng-annotate

Note: this library depends on the syntax decorators plugin for parsing. Simply $ npm install --save-dev babel-plugin-syntax-decorators and follow the setup instructions below.

How to setup

.babelrc

{
  "presets": ["es2015"],
  "plugins": ["syntax-decorators", "ng-annotate"]
}

How to use

@Inject('service1', 'service2', 'service3')
class MyController {
 
    constructor() {
        this.service1();
    }
 
    method() {
        this.service2();
    }
 
    anotherMethod() {
        this.service3();
    }
}
 
angular.controller('MyController', MyController);

Dependencies (4)

Dev Dependencies (1)

Package Sidebar

Install

npm i babel-plugin-ng-annotate

Weekly Downloads

40

Version

0.3.2

License

MIT

Last publish

Collaborators

  • mchmielarski