{"id":17939950,"url":"https://github.com/raoul2000/rss-reader","last_synced_at":"2025-04-03T12:26:58.060Z","repository":{"id":56656761,"uuid":"305095640","full_name":"raoul2000/rss-reader","owner":"raoul2000","description":"basic rss reader","archived":false,"fork":false,"pushed_at":"2020-10-31T23:29:41.000Z","size":1335,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-02-09T01:48:20.343Z","etag":null,"topics":["react","redux","rss-reader","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/raoul2000.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}},"created_at":"2020-10-18T12:23:13.000Z","updated_at":"2020-10-30T22:49:10.000Z","dependencies_parsed_at":"2022-08-15T22:40:51.669Z","dependency_job_id":null,"html_url":"https://github.com/raoul2000/rss-reader","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/raoul2000%2Frss-reader","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raoul2000%2Frss-reader/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raoul2000%2Frss-reader/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raoul2000%2Frss-reader/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/raoul2000","download_url":"https://codeload.github.com/raoul2000/rss-reader/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247000541,"owners_count":20867103,"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":["react","redux","rss-reader","typescript"],"created_at":"2024-10-29T00:45:09.100Z","updated_at":"2025-04-03T12:26:58.014Z","avatar_url":"https://github.com/raoul2000.png","language":"TypeScript","readme":"# RSS Reader\n\nThis **really simple RSS reader** is a personal side project initiated for auto-educational purpose only,  around Typescript, React and companion libraries. If you're looking for a real RSS reader, your quest is not over ...\n\n- [RSS Reader](#rss-reader)\n  - [Features](#features)\n  - [Preview](#preview)\n  - [Base App](#base-app)\n  - [Available Scripts](#available-scripts)\n    - [`npm start`](#npm-start)\n    - [`npm test`](#npm-test)\n    - [`npm run build`](#npm-run-build)\n    - [`npm run eject`](#npm-run-eject)\n  - [Reference](#reference)\n    - [Redux](#redux)\n    - [About async data fetch](#about-async-data-fetch)\n    - [Others](#others)\n\n\n## Features\n\n- [X] use TypeScript\n- [X] 3 columns layout \n- [X] default list of RSS source\n- [ ] add new RSS source\n- [X] display RSS items list\n- [X] display detail item\n- more to come ... (maybe)\n\n## Preview\n\n![demo](./demo.gif)\n\n## Base App\n- Base App is create using [create-react-app with typescript](https://create-react-app.dev/docs/adding-typescript/) with Typescript template\n```\nnpx create-react-app rss-reader --template typescript\n```\n## Available Scripts \n\n(extract from Create React App README.md)\n\nIn the project directory, you can run:\n\n### `npm start`\n\nRuns the app in the development mode.\u003cbr /\u003e\nOpen [http://localhost:3000](http://localhost:3000) to view it in the browser.\n\nThe page will reload if you make edits.\u003cbr /\u003e\nYou will also see any lint errors in the console.\n\n### `npm test`\n\nLaunches the test runner in the interactive watch mode.\u003cbr /\u003e\nSee the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.\n\n### `npm run build`\n\nBuilds the app for production to the `build` folder.\u003cbr /\u003e\nIt correctly bundles React in production mode and optimizes the build for the best performance.\n\nThe build is minified and the filenames include the hashes.\u003cbr /\u003e\nYour app is ready to be deployed!\n\nSee the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.\n\n### `npm run eject`\n\n**Note: this is a one-way operation. Once you `eject`, you can’t go back!**\n\nIf you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.\n\nInstead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.\n\nYou don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.\n\n\n## Reference\n### Redux\n- [Redux](https://redux.js.org/)\n- [React Redux](https://react-redux.js.org/)\n- [Redux DevTools Extension](http://extension.remotedev.io/)\n\n### About async data fetch\n- [How to fetch data with React Hooks?](https://www.robinwieruch.de/react-hooks-fetch-data)\n- [Hook: useFetch](https://use-http.com)\n- [react-async-utils](https://github.com/CarlosGines/react-async-utils)\n\n### Others\n- [How the useEffect Hook Works (with Examples)](https://daveceddia.com/useeffect-hook-examples/)\n- [React \u0026 Redux in TypeScript - Complete Guide](https://github.com/piotrwitek/react-redux-typescript-guide)\n- [Reselect: a selector library](https://github.com/reduxjs/reselect#motivation-for-memoized-selectors)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fraoul2000%2Frss-reader","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fraoul2000%2Frss-reader","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fraoul2000%2Frss-reader/lists"}