{"id":18614799,"url":"https://github.com/andrewjbateman/ionic-angular-nouvelles","last_synced_at":"2026-05-07T01:31:35.086Z","repository":{"id":49909063,"uuid":"325604917","full_name":"AndrewJBateman/ionic-angular-nouvelles","owner":"AndrewJBateman","description":":clipboard: Ionic-Angular PWA to display online status and API data","archived":false,"fork":false,"pushed_at":"2023-07-06T14:34:50.000Z","size":2204,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-25T06:27:00.535Z","etag":null,"topics":["angular","angular16","ionic","ionic5","pwa","pwa-app"],"latest_commit_sha":null,"homepage":"https://wizardly-golick-bb0627.netlify.app","language":"TypeScript","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/AndrewJBateman.png","metadata":{"files":{"readme":"README.md","changelog":null,"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":"2020-12-30T17:05:23.000Z","updated_at":"2023-10-06T07:27:32.000Z","dependencies_parsed_at":"2024-11-07T03:40:57.387Z","dependency_job_id":null,"html_url":"https://github.com/AndrewJBateman/ionic-angular-nouvelles","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/AndrewJBateman/ionic-angular-nouvelles","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndrewJBateman%2Fionic-angular-nouvelles","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndrewJBateman%2Fionic-angular-nouvelles/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndrewJBateman%2Fionic-angular-nouvelles/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndrewJBateman%2Fionic-angular-nouvelles/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AndrewJBateman","download_url":"https://codeload.github.com/AndrewJBateman/ionic-angular-nouvelles/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndrewJBateman%2Fionic-angular-nouvelles/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32719424,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-07T00:29:05.620Z","status":"ssl_error","status_checked_at":"2026-05-07T00:28:57.074Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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","angular16","ionic","ionic5","pwa","pwa-app"],"created_at":"2024-11-07T03:27:02.753Z","updated_at":"2026-05-07T01:31:35.071Z","avatar_url":"https://github.com/AndrewJBateman.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# :zap: Ionic Angular Nouvelles\n\n* Ionic app that displays API data and connected status\n* **Note:** to open web links in a new window use: _ctrl+click on link_\n\n![GitHub repo size](https://img.shields.io/github/repo-size/AndrewJBateman/ionic-angular-nouvelles?style=plastic)\n![GitHub pull requests](https://img.shields.io/github/issues-pr/AndrewJBateman/ionic-angular-nouvelles?style=plastic)\n![GitHub Repo stars](https://img.shields.io/github/stars/AndrewJBateman/ionic-angular-nouvelles?style=plastic)\n![GitHub last commit](https://img.shields.io/github/last-commit/AndrewJBateman/ionic-angular-nouvelles?style=plastic)\n\n## :page_facing_up: Table of contents\n\n* [Ionic Angular Nouvelles](ionic-angular-nouvelles)\n  * [:page_facing_up: Table of contents](#page_facing_up-table-of-contents)\n  * [:books: General info](#books-general-info)\n  * [:camera: Screenshots](#camera-screenshots)\n  * [:signal_strength: Technologies](#signal_strength-technologies)\n  * [:floppy_disk: Setup](#floppy_disk-setup)\n  * [:computer: Code Examples](#computer-code-examples)\n  * [:cool: Features](#cool-features)\n  * [:clipboard: Status \u0026 To-Do List](#clipboard-status--to-do-list)\n  * [:clap: Inspiration](#clap-inspiration)\n  * [:file_folder: License](#file_folder-license)\n  * [:envelope: Contact](#envelope-contact)\n\n## :books: General info\n\n* APIs used do not require API keys\n* Built using the [Ionic framework](https://ionicframework.com/docs)\n\n## :camera: Screenshots\n\ntba\n\n## :signal_strength: Technologies\n\n* [Angular v16](https://angular.io/)\n* [Ionic/angular v7](https://www.npmjs.com/package/@ionic/angular)\n* [Ionic v7 open source Ionicons](https://ionicons.com/)\n\n## :floppy_disk: Setup\n\n* Run `npm i` to install dependencies\n* Note: there are no API keys required\n* `ionic serve` to start the server on _localhost://8100_\n* To run linter: `npm run lint`\n\n## :computer: Code Examples\n\n* `explorer-container.container.ts` async function to get Boolean connected status on initialization\n\n```typescript\n  async ngOnInit() {\n    const status: ConnectionStatus = await Network.getStatus();\n    this.appIsOnline = status.connected;\n\n    Network.addListener('networkStatusChange', () =\u003e {\n      console.log('status: ', status);\n      this.appIsOnline = status.connected;\n    });\n  }\n```\n\n## :cool: Features\n\n* tba\n\n## :clipboard: Status \u0026 To-do list\n\n* Status: Working PWA, passes linting.\n* To-do: Add capacitor statusbar \u0026 splashscreen etc. Redeploy. Add French news API data or websockets etc.\n\n## :clap: Inspiration\n\n* tba\n\n## :file_folder: License\n\n* This project is licensed under the terms of the MIT license.\n\n## :envelope: Contact\n\n* Repo created by [ABateman](https://github.com/AndrewJBateman), email: `gomezbateman@yahoo.com`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandrewjbateman%2Fionic-angular-nouvelles","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandrewjbateman%2Fionic-angular-nouvelles","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandrewjbateman%2Fionic-angular-nouvelles/lists"}