{"id":19529373,"url":"https://github.com/davepartner/angularjs2-quickstart","last_synced_at":"2026-02-10T09:11:14.605Z","repository":{"id":110556089,"uuid":"69402383","full_name":"davepartner/angularjs2-quickstart","owner":"davepartner","description":"A sample quick start for angularjs to save you time","archived":false,"fork":false,"pushed_at":"2016-10-01T20:55:13.000Z","size":2,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-04T16:35:48.782Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"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/davepartner.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":"2016-09-27T22:01:37.000Z","updated_at":"2016-09-27T22:01:37.000Z","dependencies_parsed_at":null,"dependency_job_id":"5c79b420-9691-4495-a741-f2208ca0b8f3","html_url":"https://github.com/davepartner/angularjs2-quickstart","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/davepartner/angularjs2-quickstart","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davepartner%2Fangularjs2-quickstart","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davepartner%2Fangularjs2-quickstart/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davepartner%2Fangularjs2-quickstart/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davepartner%2Fangularjs2-quickstart/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/davepartner","download_url":"https://codeload.github.com/davepartner/angularjs2-quickstart/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davepartner%2Fangularjs2-quickstart/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272612271,"owners_count":24964388,"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","status":"online","status_checked_at":"2025-08-29T02:00:10.610Z","response_time":87,"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":[],"created_at":"2024-11-11T01:24:31.946Z","updated_at":"2026-02-10T09:11:12.324Z","avatar_url":"https://github.com/davepartner.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# angularjs2-quickstart\nA sample quick start for angularjs to save you time. Just clone and run 'npm start' then you are good to go.\n\n\n\n## Create a new project based on the QuickStart\n\nClone this repo into new project folder (e.g., `my-proj`).\n```bash\ngit clone  https://github.com/daveozoalor/angularjs2-quickstart  my-proj\ncd my-proj\n```\n\nWe have no intention of updating the source on `angular/quickstart`.\nDiscard everything \"git-like\" by deleting the `.git` folder.\n```bash\nrm -rf .git  # non-Windows\nrd .git /S/Q # windows\n```\n\n### Create a new git repo\nYou could [start writing code](#start-development) now and throw it all away when you're done.\nIf you'd rather preserve your work under source control, consider taking the following steps.\n\nInitialize this project as a *local git repo* and make the first commit:\n```bash\ngit init\ngit add .\ngit commit -m \"Initial commit\"\n```\n\nCreate a *remote repository* for this project on the service of your choice.\n\nGrab its address (e.g. *`https://github.com/\u003cmy-org\u003e/my-proj.git`*) and push the *local repo* to the *remote*.\n```bash\ngit remote add origin \u003crepo-address\u003e\ngit push -u origin master\n```\n## Install npm packages\n\n\u003e See npm and nvm version notes above\n\nInstall the npm packages described in the `package.json` and verify that it works:\n\n**Attention Windows Developers:  You must run all of these commands in administrator mode**.\n\n```bash\nnpm install\nnpm start\n```\n\n\u003e If the `typings` folder doesn't show up after `npm install` please install them manually with:\n\n\u003e `npm run typings -- install`\n\nThe `npm start` command first compiles the application, \nthen simultaneously re-compiles and runs the `lite-server`.\nBoth the compiler and the server watch for file changes.\n\nShut it down manually with Ctrl-C.\n\nYou're ready to write your application.\n\n### npm scripts\n\nWe've captured many of the most useful commands in npm scripts defined in the `package.json`:\n\n* `npm start` - runs the compiler and a server at the same time, both in \"watch mode\".\n* `npm run tsc` - runs the TypeScript compiler once.\n* `npm run tsc:w` - runs the TypeScript compiler in watch mode; the process keeps running, awaiting changes to TypeScript files and re-compiling when it sees them.\n* `npm run lite` - runs the [lite-server](https://www.npmjs.com/package/lite-server), a light-weight, static file server, written and maintained by\n[John Papa](https://github.com/johnpapa) and\n[Christopher Martin](https://github.com/cgmartin)\nwith excellent support for Angular apps that use routing.\n* `npm run typings` - runs the typings tool.\n* `npm run postinstall` - called by *npm* automatically *after* it successfully completes package installation. This script installs the TypeScript definition files this app requires.\nHere are the test related scripts:\n* `npm test` - compiles, runs and watches the karma unit tests\n* `npm run e2e` - run protractor e2e tests, written in JavaScript (*e2e-spec.js)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdavepartner%2Fangularjs2-quickstart","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdavepartner%2Fangularjs2-quickstart","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdavepartner%2Fangularjs2-quickstart/lists"}