🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

angular-es6

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angular-es6

ECMAScript 6 boilerplate for angular source code and webpack

1.0.3
Source
npm
Version published
Weekly downloads
86
8.86%
Maintainers
1
Weekly downloads
 
Created
Source

Angular ECMAScript 6 boilerplate

Do you want to use ES6 with angular and webpack? Here is a simple project with everything what you need at the beginning

Instalation

npm install angular-es6

Examples

Here is multiple examples:

Directive

export default class NiceDirective {
    constructor($http) {
    	this.$http = $http;

        this.template = '<div>{{computeName('NICE')}}</div>'; 
        this.restrict = 'E'; 
        this.scope = {
        	name: '='
    	};
    } 

    link($scope, element, attrs) { 
        this.$scope = $scope;

        $scope.computeName = suffix => computeName(suffix);
    } 

    computeName(suffix = '') {
    	const $scope = this.$scope;

    	return 'Mr.' + $scope.name + ' ' +  suffix;
    }
}

NiceDirective.$inject = ['$http'];

Controller

export default class MainController {
	constructor($scope) {
		this.$scope = $scope;
	}
}

MainController.$inject = ['$scope'];

Run build for production

npm run build

Run build for development

npm run dev

Keywords

angular

FAQs

Package last updated on 25 Apr 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts