{"id":15192692,"url":"https://github.com/actionanand/angularjs-webpack","last_synced_at":"2026-02-16T05:32:27.447Z","repository":{"id":39581060,"uuid":"497620725","full_name":"actionanand/angularjs-webpack","owner":"actionanand","description":"A workflow for AngularJS made with more complex Webpack. Fully automated AngularJS.","archived":false,"fork":false,"pushed_at":"2022-05-31T19:19:09.000Z","size":643,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-06T17:46:10.615Z","etag":null,"topics":["angularjs","webpack","webpack2"],"latest_commit_sha":null,"homepage":"https://actionanand.github.io/angularjs-webpack/","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/actionanand.png","metadata":{"files":{"readme":"README.md","changelog":null,"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":"2022-05-29T14:51:55.000Z","updated_at":"2022-05-29T15:21:59.000Z","dependencies_parsed_at":"2022-08-28T22:45:45.983Z","dependency_job_id":null,"html_url":"https://github.com/actionanand/angularjs-webpack","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/actionanand/angularjs-webpack","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/actionanand%2Fangularjs-webpack","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/actionanand%2Fangularjs-webpack/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/actionanand%2Fangularjs-webpack/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/actionanand%2Fangularjs-webpack/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/actionanand","download_url":"https://codeload.github.com/actionanand/angularjs-webpack/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/actionanand%2Fangularjs-webpack/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29500832,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-16T03:57:51.541Z","status":"ssl_error","status_checked_at":"2026-02-16T03:55:59.854Z","response_time":115,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["angularjs","webpack","webpack2"],"created_at":"2024-09-27T22:00:34.867Z","updated_at":"2026-02-16T05:32:27.428Z","avatar_url":"https://github.com/actionanand.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AngularJS Webpack\n\nA complete, yet simple, starter for AngularJS using Webpack.\n\nThis workflow serves as a starting point for building AngularJS (1.x) applications using Webpack 2.x. 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* 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* Testing environment using karma to run tests and jasmine as the framework.\n* Code coverage when tests are run.\n* No gulp and no grunt, just npm scripts.\n\n\u003eWarning: Make sure you're using the latest version of Node.js and NPM\n\n### Quick start\n\n\u003e Clone/Download the repo then edit `app.js` inside [`/src/app/app.js`](/src/app/app.js)\n\n```bash\n# clone our repo\n$ git clone https://github.com/actionanand/angularjs-webpack.git --branch 1-skeleton-base\n\n# alternate way to clone without git history\n\n$ npx degit https://github.com/actionanand/angularjs-webpack.git#1-skeleton-base angularjs-webpack\n\n# change directory to your app\n$ cd angularjs-webpack\n\n# install the dependencies with npm\n$ npm 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    * [Dependencies](#dependencies)\n    * [Installing](#installing)\n    * [Running the app](#running-the-app)\n    * [Developing](#developing)\n    * [Testing](#testing)\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## Installing\n\n* `fork` this repo\n* `clone` your fork\n* `npm install` to install all dependencies\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/angularjs-webpack`.\n\n## Developing\n\n### Build files\n\n* single run: `npm run build`\n* build files and watch: `npm start`\n\n## Testing\n\n#### 1. Unit Tests\n\n* single run: `npm test`\n* live mode (TDD style): `npm run test-watch`\n\n# License\n\n[MIT](/LICENSE)\n\n## Resources\n\n- [Replacement for git clone - degit](https://dev.to/vuelancer/replacement-for-git-clone-degit-3lf1)\n- [Bootstrap 3 Official](https://getbootstrap.com/docs/3.3/)\n- [angular-ui-router NPM package](https://www.npmjs.com/package/angular-ui-router)\n- [How to use index.js file(Properly)](https://dev.to/fahadaminshovon/-how-to-use-indexjs-fileproperly-302f)\n- [Using $scope.$watch in ES6](https://stackoverflow.com/questions/36452919/using-scope-watch-in-es6)\n- [Angularjs: 'controller as syntax' and $watch](https://stackoverflow.com/questions/24078535/angularjs-controller-as-syntax-and-watch)\n- [Digging into Angulars Controller as syntax](https://ultimatecourses.com/blog/digging-into-angulars-controller-as-syntax)\n- [angular 1.5 method .name in export angular.module](https://stackoverflow.com/questions/38169651/angular-1-5-method-name-in-export-angular-module)\n- [Exploring ES6 Classes In AngularJS 1.x](https://www.michaelbromley.co.uk/blog/exploring-es6-classes-in-angularjs-1.x/)\n- [Advanced routing and resolves](https://medium.com/opinionated-angularjs/advanced-routing-and-resolves-a2fcbf874a1c)\n- [Pokemon github](https://github.com/zamarrowski/pokemon-poc)\n- [file-loader to load images by webpack](https://v4.webpack.js.org/loaders/file-loader/)\n- [creating a new variable in directive scope - stackoverflow](https://stackoverflow.com/questions/26517058/creating-a-new-variable-in-directive-scope)\n\n### Credits\n\n- [AngularJs webpack - github(@preeboot)](https://github.com/preboot/angularjs-webpack)\n- [AngularJs webpack demo - github](https://github.com/angular-tips/webpack-demo)\n- [Using AngularJS with ES6 and Webpack](http://angular-tips.com/blog/2015/06/using-angular-1-dot-x-with-es6-and-webpack/)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Factionanand%2Fangularjs-webpack","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Factionanand%2Fangularjs-webpack","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Factionanand%2Fangularjs-webpack/lists"}