{"id":22967669,"url":"https://github.com/minhlucvan/nasa-images","last_synced_at":"2025-08-04T14:42:07.775Z","repository":{"id":44286728,"uuid":"219686218","full_name":"minhlucvan/nasa-images","owner":"minhlucvan","description":"product like nasa images gallery using react - redux","archived":false,"fork":false,"pushed_at":"2023-05-07T05:03:35.000Z","size":4811,"stargazers_count":22,"open_issues_count":7,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-04-28T02:14:55.525Z","etag":null,"topics":["apod","galery","images","nasa-api","pwa","react","redux"],"latest_commit_sha":null,"homepage":"https://minhlv-nasa.firebaseapp.com","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/minhlucvan.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":"2019-11-05T07:44:53.000Z","updated_at":"2023-05-16T06:37:16.000Z","dependencies_parsed_at":"2022-08-29T17:00:49.719Z","dependency_job_id":null,"html_url":"https://github.com/minhlucvan/nasa-images","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/minhlucvan%2Fnasa-images","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/minhlucvan%2Fnasa-images/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/minhlucvan%2Fnasa-images/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/minhlucvan%2Fnasa-images/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/minhlucvan","download_url":"https://codeload.github.com/minhlucvan/nasa-images/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":229754903,"owners_count":18119134,"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":["apod","galery","images","nasa-api","pwa","react","redux"],"created_at":"2024-12-14T21:14:25.111Z","updated_at":"2024-12-14T21:14:25.525Z","avatar_url":"https://github.com/minhlucvan.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# NASA Images\n\ndemo application for NASA Images using state of art pratice of `react` - `redux` - `css mdules`\n\n# Live Demo\n\nhttps://minhlv-nasa.firebaseapp.com/explore\n\n# Technolohies\n\n- [x] [react](https://reactjs.org/)\n- [x] [redux](https://redux.js.org/)\n- [x] [redu -starter kit](https://redux-starter-kit.js.org/)\n- [x] [css modules](https://github.com/css-modules/css-modules)\n- [x] [ducks architechure](https://www.freecodecamp.org/news/scaling-your-redux-app-with-ducks-6115955638be/)\n- [x] [storybook](https://storybook.js.org/)\n- [x] [hooks](https://reactjs.org/docs/hooks-intro.html)\n- [x] [theming](https://medium.com/@dmitriy.borodiy/easy-color-theming-with-scss-bc38fd5734d1)\n- [x] [scss](https://sass-lang.com/)\n- [x] [pwa](https://developers.google.com/web/progressive-web-apps)\n\n# Installation\n\n## Get the code\n\n0. requires `Nodejs` and `NPM` get insstaled on the local marchine\n\n1. clone the source code\n\n```bash\n\tgit clone https://github.com/minhlucvan/nasa-images\n```\n\n2. install dependencies\n\n```bash\n\tnpm install\n```\n\n## Run dev server\n\n```bash\n\tnpm run dev\n```\n\nopen link: http://localhost:8080\n\n## Testing\n\n```bash\n\tnpm run test\n```\n\n## Component visual test\n\n```bash\n\tnom run storybook\n```\n\n## Build\n\n```bash\n\tnpm run build\n```\n\n# Development\n\n## Code base\n\nThe code base is separete into main sections:\n\n- app\n- lib\n- context\n- redux\n- config\n- redux\n- scss\n\n### App\n\nThe main application contain `routes` ,`pages`, `context` and other stuff of the [`application layer`](https://medium.com/@cristiansalcescu/how-to-create-a-three-layer-application-with-react-8621741baca0)\n\n### lib\n\nThe common `components`, `helpers`, `api`, `hooks` and other things that we use across the apps\n\n### Config\n\nthe configuration files\n\n### SCSS\n\nscss styles\n\n### Redux\n\nbussiness handlers and state management bas on `redux`;\n\nEach redux module including `actions`, `reducer`, `selectors`, `effects` these factors is collected automaticly through `configureStore` function and integrate to the app in `redux/index.js`;\n\n### Context\n\nCommon context that can reuse across the app\n\n## Environments\n\nBy defautl I using 2 environments are `development` and `production`. `env` is provide to webpack by `npm scripts` specifics on `package.json`\n\nIf you want to and a custom `env` you neend to adding config to webpack.\n\n## Configuration\n\nApp configuration is localte on `src/main/config`. The configurations a split into files and load all in `src/main/config/index.js`\n\nBase on current environments webpack will load the config file extentions. `*.js` for dev and `*.prod.js` on production mode.\n\n## Themming\n\nPlease see: [this artice](https://medium.com/@dmitriy.borodiy/easy-color-theming-with-scss-bc38fd5734d1)\n\n## Hooks\n\nWe can create insrested things base on (hooks)[https://reactjs.org/docs/hooks-intro.html]\n\n## Context\n\n## Styles\n\n## Testing\n\n# Contribution\n\nFeel free to make pull request and open an issue\n\ncontributors: [@minhlucvan](http://github.com/minhlucvan)\n\n# Lisence\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fminhlucvan%2Fnasa-images","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fminhlucvan%2Fnasa-images","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fminhlucvan%2Fnasa-images/lists"}