{"id":19544088,"url":"https://github.com/zombiqwerty/heloo","last_synced_at":"2026-05-12T12:01:29.465Z","repository":{"id":80607797,"uuid":"53607616","full_name":"zombiQWERTY/heloo","owner":"zombiQWERTY","description":null,"archived":false,"fork":false,"pushed_at":"2016-03-16T04:06:18.000Z","size":13461,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-08T19:15:42.842Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"CSS","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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-03-10T18:31:28.000Z","updated_at":"2016-03-10T18:33:39.000Z","dependencies_parsed_at":null,"dependency_job_id":"d925a443-38f1-4a57-bcb8-ddd23d2e28dc","html_url":"https://github.com/zombiQWERTY/heloo","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%2Fheloo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zombiQWERTY%2Fheloo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zombiQWERTY%2Fheloo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zombiQWERTY%2Fheloo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zombiQWERTY","download_url":"https://codeload.github.com/zombiQWERTY/heloo/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240801035,"owners_count":19859727,"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-11-11T03:24:29.006Z","updated_at":"2026-05-12T12:01:24.434Z","avatar_url":"https://github.com/zombiQWERTY.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# An Angular Webpack Starter kit\n\n[![Dependency Status](https://david-dm.org/zombiQWERTY/angular-webpack-starter/status.svg)](https://david-dm.org/zombiQWERTY/angular-webpack-starter#info=dependencies) [![devDependency Status](https://david-dm.org/zombiQWERTY/angular-webpack-starter/dev-status.svg)](https://david-dm.org/zombiQWERTY/angular-webpack-starter#info=devDependencies)\n\nA complete, yet simple, 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* 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\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 `Application.js` inside [`/src/Application.js`](/src/Application.js)\n\n```bash\n# clone our repo\n$ git clone https://github.com/zombiQWERTY/angular-webpack-starter.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# 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    * [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## Installing\n\nEither\n* `fork` this repo\n* `clone` your fork\n\nOr just\n* `npm install angular-webpack-starter-kit` for completely installation\n\nAnd then\n* `npm install` to install all dependencies\n\nFor End to End live testing:\n* `npm install selenium-standalone@latest -g`\n* `selenium-standalone install`\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 test`\n* live mode (TDD style): `npm run test-watch`\n\n\n#### 2. End to End Tests\n\n* single run: `npm e2e`\n* live mode (TDD style): `npm run e2e-watch`\n\n## Other\n\n* `npm 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 [Content folder](./src/content/) folder\n\n# License\n\n[MIT](/LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzombiqwerty%2Fheloo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzombiqwerty%2Fheloo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzombiqwerty%2Fheloo/lists"}