{"id":14967828,"url":"https://github.com/zombiqwerty/angular-component-way-webpack-starter-kit","last_synced_at":"2025-10-25T21:32:08.966Z","repository":{"id":57178194,"uuid":"56651472","full_name":"zombiQWERTY/angular-component-way-webpack-starter-kit","owner":"zombiQWERTY","description":"An Angular Webpack Starter kit featuring Angular 1.x with component way (component-router, Tests, E2E, Dev/Prod), Karma, Protractor, Jasmine, Babel, Postcss, Jade, livereload, Webpack and CLI-generator) by @zombiQWERTY","archived":false,"fork":false,"pushed_at":"2017-07-08T22:32:27.000Z","size":43,"stargazers_count":45,"open_issues_count":0,"forks_count":10,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-01-31T10:51:12.185Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://github.com/zombiQWERTY/angular-component-way-webpack-starter-kit","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/zombiQWERTY.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-04-20T03:14:41.000Z","updated_at":"2020-08-10T12:24:59.000Z","dependencies_parsed_at":"2022-09-03T13:42:11.784Z","dependency_job_id":null,"html_url":"https://github.com/zombiQWERTY/angular-component-way-webpack-starter-kit","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zombiQWERTY%2Fangular-component-way-webpack-starter-kit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zombiQWERTY%2Fangular-component-way-webpack-starter-kit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zombiQWERTY%2Fangular-component-way-webpack-starter-kit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zombiQWERTY%2Fangular-component-way-webpack-starter-kit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zombiQWERTY","download_url":"https://codeload.github.com/zombiQWERTY/angular-component-way-webpack-starter-kit/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238212440,"owners_count":19434955,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-09-24T13:38:40.776Z","updated_at":"2025-10-25T21:32:03.661Z","avatar_url":"https://github.com/zombiQWERTY.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# PACKAGE DEPRECATED. USE REACT OR VUE INSTEAD OF ANGULAR. I AM DOING THE KIT BASED ON VUE WITH REDUX.\n# An Angular Webpack Starter kit\n\n[![Dependency Status](https://david-dm.org/zombiQWERTY/angular-component-way-webpack-starter-kit/status.svg)](https://david-dm.org/zombiQWERTY/angular-component-way-webpack-starter-kit#info=dependencies) [![devDependency Status](https://david-dm.org/zombiQWERTY/angular-component-way-webpack-starter-kit/dev-status.svg)](https://david-dm.org/zombiQWERTY/angular-component-way-webpack-starter-kit#info=devDependencies)\n\nA complete, yet simple, component-way starter for Angular using Webpack.\n\nThis workflow serves as a starting point for building Angular 1.x applications using Webpack. Should be noted that apart from the pre-installed angular package, this workflow is pretty much generic.\n\n* Heavily commented webpack configuration with reasonable defaults.\n* Based on component way (even styles).\n* ES6, and ES7 support with babel.\n* Source maps included in all builds.\n* Development server with live reload.\n* Production builds with cache busting.\n* PostCSS and jade support by default.\n* Testing environment using karma to run tests and jasmine as the framework; protractor to End to End tests.\n* Code coverage when tests are run.\n* No gulp and no grunt, just npm scripts.\n* Generic components via plop.\n\n\u003eWarning: Make sure you're using the latest version of Node.js and NPM\n\n### Installing\n\n```bash\n# clone our repo\n$ git clone https://github.com/zombiQWERTY/angular-component-way-webpack-starter-kit.git my-app\n\n# change directory to your app\n$ cd my-app\n\n# install the dependencies with npm\n$ npm install\n\n# install selenium-webdriver (for e2e testing)\n$ npm run selenium-install\n\n# start the server\n$ npm start\n```\n\ngo to [http://localhost:8080](http://localhost:8080) in your browser.\n\n# Table of Contents\n\n* [Getting Started](#getting-started)\n    * [Installing](#installing)\n    * [Dependencies](#dependencies)\n    * [Running the app](#running-the-app)\n    * [Developing](#developing)\n    * [Testing](#testing)\n    * [Other](#other)\n* [License](#license)\n\n# Getting Started\n\n## Dependencies\n\nWhat you need to run this app:\n* `node` and `npm` (Use [NVM](https://github.com/creationix/nvm))\n* Ensure you're running Node (`v4.1.x`+) and NPM (`2.14.x`+)\n\n## Running the app\n\nAfter you have installed all dependencies you can now run the app with:\n```bash\nnpm start\n```\n\nIt will start a local server using `webpack-dev-server` which will watch, build (in-memory), and reload for you. The port will be displayed to you as `http://localhost:8080`.\n\n## Developing\n\n### Build files\n\n* single run: `npm run build`\n\n## Testing\n\n#### 1. Unit Tests\n\n* single run: `npm run test`\n* live mode (TDD style): `npm run test-watch`\n\n\n#### 2. End to End Tests\n* run `npm run selenium-start` and then:\n* single run: `npm run e2e` or\n* live mode (TDD style): `npm run e2e-watch`\n\n## Other\n\n* `npm run plop` for generating files\n* `npm run stats` for code analysing ([webpack.github.io/analyse](https://webpack.github.io/analyse/))\n* Store your content (images, etc.) that loads from html/jade in [assets folder](./src/assets/) folder\n\n# License\n\n[MIT](/LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzombiqwerty%2Fangular-component-way-webpack-starter-kit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzombiqwerty%2Fangular-component-way-webpack-starter-kit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzombiqwerty%2Fangular-component-way-webpack-starter-kit/lists"}