nitipan / angular1.6.x-webpack-3.x-starter-kit

angular1.6.x webpack 3.x starter kit

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

  1. make sure you have NodeJS
  2. run npm install & npm start to start dev-server
  3. run npm run build for production build

Example code ES6 code

app/components/approot.component.js

export default {
    template: require('./approot.component.html'),
    controller: class {
        constructor() {

        }
        $onInit() {
            let name = "world";
            this.text = `Hello - ${name}`;
        }
    }
};

About

angular1.6.x webpack 3.x starter kit


Languages

Language:JavaScript 91.5%Language:CSS 4.7%Language:HTML 3.9%