{"id":18289550,"url":"https://github.com/divyanshu-rawat/angular-js-webpack","last_synced_at":"2025-04-09T07:22:16.826Z","repository":{"id":82676192,"uuid":"86903008","full_name":"divyanshu-rawat/Angular-JS-WebPack","owner":"divyanshu-rawat","description":"This repository demonstrates use of webpack in angular js application to make it modular.","archived":false,"fork":false,"pushed_at":"2017-06-22T16:43:48.000Z","size":235,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-15T01:41:21.092Z","etag":null,"topics":["angularjs","commonjs-modules","webpack"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/divyanshu-rawat.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-04-01T09:40:03.000Z","updated_at":"2017-04-01T10:00:57.000Z","dependencies_parsed_at":null,"dependency_job_id":"e3acc277-6c34-4ceb-8d48-c1e3b6111385","html_url":"https://github.com/divyanshu-rawat/Angular-JS-WebPack","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/divyanshu-rawat%2FAngular-JS-WebPack","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/divyanshu-rawat%2FAngular-JS-WebPack/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/divyanshu-rawat%2FAngular-JS-WebPack/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/divyanshu-rawat%2FAngular-JS-WebPack/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/divyanshu-rawat","download_url":"https://codeload.github.com/divyanshu-rawat/Angular-JS-WebPack/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247994517,"owners_count":21030141,"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":["angularjs","commonjs-modules","webpack"],"created_at":"2024-11-05T14:07:05.338Z","updated_at":"2025-04-09T07:22:16.795Z","avatar_url":"https://github.com/divyanshu-rawat.png","language":"JavaScript","readme":"#### Bundling Angular with webpack\n\n##\n\n[![Join the chat](https://img.shields.io/badge/gitter-join%20chat%20%E2%86%92-brightgreen.svg)](https://gitter.im/divyanshu001)\n[![Contact me on Codementor](https://cdn.codementor.io/badges/contact_me_github.svg)](https://www.codementor.io/divyanshurawat?utm_source=github\u0026utm_medium=button\u0026utm_term=divyanshurawat\u0026utm_campaign=github)\n[![Twitter URL](https://img.shields.io/twitter/url/http/shields.io.svg?style=social)](https://twitter.com/r46956)\n[![DUB](https://img.shields.io/dub/l/vibe-d.svg?style=flat)](#)\n\n[![Divyanshu](https://img.shields.io/badge/divyanshu-owner-brightgreen.svg?style=flat)](http://www.divyanshurawat.in)\n[![Say Thanks!](https://img.shields.io/badge/Say%20Thanks-!-1EAEDB.svg)](https://saythanks.io/to/divyanshu-rawat)\n[![Build Status](https://travis-ci.org/divyanshu-rawat/JS-Testing.svg?branch=master)](https://travis-ci.org/divyanshu-rawat/JS-Testing)\n[![NPM](https://img.shields.io/badge/npm-v3.10.10-blue.svg)](https://www.npmjs.com/package/npm)\n\n##\n\n### Description \n\n* Angular is so modular you can separate your JavaScript code like your controllers and services into multiple files.\n  But adding all of the script references to your HTML might be painful. No worries there is a workaround to this problem.\n* webpack is a module loader that works similar to how Node handles modules.\n  With webpack you can install Angular using NPM, the Node Package Manager.\n \n* This application basically  monitors the status of github.com and all its related services.\n\n##\n\n### Installation Instructions\n\n* Open a command prompt in the project's root directory.\n\n* Cd into that root folder you just cloned locally.\n\n* Open terminal in the current folder and to install all dependencies type \n\n```javascript\n   npm install \n```\n\n* This installs the dependencies as defined in the package.json file\n\n```javascript\n   npm run bundle \n```\n\n* By running this command example webpack will read and analyze the entry point and its dependencies (including transitive     dependencies).Then it will bundle them all into app.bundle.js.\n\n\n* Now typing \n\n```javascript\n   http-server\n```\n\n* It will launch the server on `http://172.18.0.1:8081`\n\n##\n\n\n### Contributing\n\n1. Create your **_branch_**: `git checkout -b my-new-feature`\n\n2. **_Commit_** your changes: `git commit -m 'Add some feature'`\n\n3. **_Push_** to the branch: `git push origin my-new-feature`\n\n4. Send a **Pull Request**\n\n5. **_Enjoy!_**\n\n##\n\n### Dependencies\n\n* Angular JS,webpack\n\n#### some examples\n\n* Main Application.\n\n![alt tag](https://github.com/divyanshu-rawat/Angular-JS-WebPack/blob/master/app/screenshots/appex.png)\n\n##\n\n* On running npm run bundle.\n\n![alt tag](https://github.com/divyanshu-rawat/Angular-JS-WebPack/blob/master/app/screenshots/bundleex.png)\n\n##\n\n*  Sample example showing How webpack works.\n\n![alt tag](https://github.com/divyanshu-rawat/Angular-JS-WebPack/blob/master/app/screenshots/sampleex.png)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdivyanshu-rawat%2Fangular-js-webpack","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdivyanshu-rawat%2Fangular-js-webpack","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdivyanshu-rawat%2Fangular-js-webpack/lists"}