{"id":16490243,"url":"https://github.com/temilaj/github-browser","last_synced_at":"2026-04-12T11:41:20.276Z","repository":{"id":123470997,"uuid":"78682850","full_name":"temilaj/github-browser","owner":"temilaj","description":"  simple application that browses github user profiles.","archived":false,"fork":false,"pushed_at":"2017-02-24T20:31:13.000Z","size":30,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-01T06:25:15.347Z","etag":null,"topics":["angular","angular2","e2e-tests","github","github-api","karma","travis-badge","typescript-compiler"],"latest_commit_sha":null,"homepage":null,"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/temilaj.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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":"2017-01-11T21:46:40.000Z","updated_at":"2019-10-14T11:13:29.000Z","dependencies_parsed_at":null,"dependency_job_id":"c84f0873-391c-4033-b9be-8c8d5964ff37","html_url":"https://github.com/temilaj/github-browser","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/temilaj/github-browser","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/temilaj%2Fgithub-browser","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/temilaj%2Fgithub-browser/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/temilaj%2Fgithub-browser/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/temilaj%2Fgithub-browser/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/temilaj","download_url":"https://codeload.github.com/temilaj/github-browser/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/temilaj%2Fgithub-browser/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31713876,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-12T06:22:27.080Z","status":"ssl_error","status_checked_at":"2026-04-12T06:21:52.710Z","response_time":58,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["angular","angular2","e2e-tests","github","github-api","karma","travis-badge","typescript-compiler"],"created_at":"2024-10-11T13:47:07.956Z","updated_at":"2026-04-12T11:41:20.243Z","avatar_url":"https://github.com/temilaj.png","language":"JavaScript","readme":"# Github Browser\n[![Build Status][travis-badge]][travis-badge-url]\n\nThis repository is inspried by [brad traversy](https://github.com/bradtraversy) and holds the TypeScript source code of the [angular.io quickstart](https://angular.io/docs/ts/latest/quickstart.html),\nthe foundation for most of the documentation samples and potentially a good starting point for your application.\n\nIt's been extended with testing support so you can start writing tests immediately.\n\n## Prerequisites\n\nNode.js and npm are essential to Angular development. \n    \n\u003ca href=\"https://docs.npmjs.com/getting-started/installing-node\" target=\"_blank\" title=\"Installing Node.js and updating npm\"\u003e\nGet it now\u003c/a\u003e if it's not already installed on your machine.\n \n**Verify that you are running at least node `v4.x.x` and npm `3.x.x`**\nby running `node -v` and `npm -v` in a terminal/console window.\nOlder versions produce errors.\n\nI recommend [nvm](https://github.com/creationix/nvm) for managing multiple versions of node and npm.\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```bash\nnpm install\nnpm start\n```\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\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\n## Testing\n\nThis repo adds both karma/jasmine unit test and protractor end-to-end testing support.\n\nThese tools are configured for specific conventions described below.\n\n*It is unwise and rarely possible to run the application, the unit tests, and the e2e tests at the same time.\nWe recommend that you shut down one before starting another.*\n\n### Unit Tests\nTypeScript unit-tests are usually in the `app` folder. Their filenames must end in `.spec`.\n\nLook for the example `app/app.component.spec.ts`.\nAdd more `.spec.ts` files as you wish; we configured karma to find them.\n\nRun it with `npm test`\n\nThat command first compiles the application, then simultaneously re-compiles and runs the karma test-runner.\nBoth the compiler and the karma watch for (different) file changes.\n\nShut it down manually with `Ctrl-C`.\n\nTest-runner output appears in the terminal window.\nWe can update our app and our tests in real-time, keeping a weather eye on the console for broken tests.\nKarma is occasionally confused and it is often necessary to shut down its browser or even shut the command down (`Ctrl-C`) and\nrestart it. No worries; it's pretty quick.\n\n### End-to-end (E2E) Tests\n\nE2E tests are in the `e2e` directory, side by side with the `app` folder.\nTheir filenames must end in `.e2e-spec.ts`.\n\nLook for the example `e2e/app.e2e-spec.ts`.\nAdd more `.e2e-spec.js` files as you wish (although one usually suffices for small projects);\nwe configured protractor to find them.\n\nThereafter, run them with `npm run e2e`.\n\nThat command first compiles, then simultaneously starts the Http-Server at `localhost:8080`\nand launches protractor.  \n\nThe pass/fail test results appear at the bottom of the terminal window.\nA custom reporter (see `protractor.config.js`) generates a  `./_test-output/protractor-results.txt` file\nwhich is easier to read; this file is excluded from source control.\n\n\n[travis-badge]: https://travis-ci.org/angular/quickstart.svg?branch=master\n[travis-badge-url]: https://travis-ci.org/angular/quickstart\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftemilaj%2Fgithub-browser","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftemilaj%2Fgithub-browser","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftemilaj%2Fgithub-browser/lists"}