{"id":15667279,"url":"https://github.com/jwcnewton/ng-material-design","last_synced_at":"2026-04-30T08:36:43.142Z","repository":{"id":94440059,"uuid":"94623192","full_name":"jwcnewton/ng-material-design","owner":"jwcnewton","description":"Boilerplate for angular 2 and material design","archived":false,"fork":false,"pushed_at":"2017-06-17T12:51:11.000Z","size":198,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-25T09:42:01.119Z","etag":null,"topics":["angular2","docker","docker-container","webpack"],"latest_commit_sha":null,"homepage":"","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/jwcnewton.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-06-17T12:44:58.000Z","updated_at":"2017-06-19T08:02:09.000Z","dependencies_parsed_at":"2023-03-29T05:04:29.747Z","dependency_job_id":null,"html_url":"https://github.com/jwcnewton/ng-material-design","commit_stats":{"total_commits":2,"total_committers":1,"mean_commits":2.0,"dds":0.0,"last_synced_commit":"facc7ad8535e4c272c96246b5e8043c4757d92f6"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jwcnewton/ng-material-design","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jwcnewton%2Fng-material-design","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jwcnewton%2Fng-material-design/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jwcnewton%2Fng-material-design/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jwcnewton%2Fng-material-design/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jwcnewton","download_url":"https://codeload.github.com/jwcnewton/ng-material-design/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jwcnewton%2Fng-material-design/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32459420,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-29T22:27:22.272Z","status":"online","status_checked_at":"2026-04-30T02:00:05.929Z","response_time":57,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["angular2","docker","docker-container","webpack"],"created_at":"2024-10-03T14:02:06.632Z","updated_at":"2026-04-30T08:36:43.118Z","avatar_url":"https://github.com/jwcnewton.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Demo Docker Workflow for [generator-ng2-webpack](https://github.com/cmelion/generator-ng2-webpack)\n\nA Docker based workflow is a little different from the typical `npm install` followed by `npm start`  routine.\nThere is no local node_modules folder and all npm modules used are global modules (for more info see [sample docker workflow](https://github.com/cmelion/generator-ng2-webpack/wiki/Sample-Docker-Workflow) ).\n\nSteps:\n* Open a terminal\n* `npm install -g docker-run` which adds support for [running docker from npm](https://github.com/mafintosh/docker-run)\n* `npm run docker-start` from a terminal or use the npm tool window\n* Once processing completes, open a browser window at http://localhost:2368\n* Make some changes in ng2-webpack-demo-app/src/app/components/home/template.html\n* Observe that your changes are reflected in the browser without having to refresh\n\n\nUse npm to run sub-generators.\nFor a complete list of available commands and to add tab auto-completion, run the following commands in a terminal:\n\n    $ npm completion \u003e\u003e ~/.bashrc\n    $ source ~/.bashrc\n    $ npm run \u003ctab\u003e\u003ctab\u003e\n    \nwhich will produce the following output    \n```\n\nbuild                 docker-open-terminal  e2e-live              new-service           watch\nci                    docker-server         lint                  postinstall           webdriver-start\nclean                 docker-start          new-component         server                webdriver-update\nclean-install         docker-stop           new-directive         start                 \nclean-start           docs                  new-interface         test                  \ndelayed-open          e2e                   new-pipe              test-watch    \n \n```\n\nThis workflow serves as a starting point for building component based Angular 2.0/React applications using Webpack. \n\n\n\n### Quick start\n\n\n```bash\n\n# change directory to your app\n$ cd my-app\n\n# start the server\n$ npm start\n\n# if you have docker installed\n$ docker-compose up\n```\n\ngo to [http://localhost:2368](http://localhost:2368) in your browser.\n\n## Dependencies\n\nWhat you need to run this app:\n* `node` and `npm` (Use [NVM](https://github.com/creationix/nvm))\n\n## Running the app\n\nAfter you have installed all dependencies you can now run the app with:\n```bash\nnpm run docker-start\n```\n\nIt will start a server using `webpack-dev-server` in a docker container which will watch, build (in-memory), and reload for you. The port will be displayed to you as `http://localhost:2368`.\n\n## Developing in the Docker container\n* run `docker exec -it ${PWD##*/} /bin/bash` in a terminal window\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjwcnewton%2Fng-material-design","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjwcnewton%2Fng-material-design","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjwcnewton%2Fng-material-design/lists"}