{"id":16799574,"url":"https://github.com/arpitnath/spacex","last_synced_at":"2026-04-10T01:40:27.738Z","repository":{"id":49958422,"uuid":"359473391","full_name":"arpitnath/spacex","owner":"arpitnath","description":"A personal project built with ReactJs, Typescript and Scss || deployed to netlify","archived":false,"fork":false,"pushed_at":"2021-06-07T21:26:51.000Z","size":3909,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"staging","last_synced_at":"2025-01-23T14:22:10.723Z","etag":null,"topics":["create-react-app","javascript","netlify-deployment","react","react-hooks","react-router","scss","typescript"],"latest_commit_sha":null,"homepage":"https://projectspacex.netlify.app/","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/arpitnath.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":"2021-04-19T13:40:18.000Z","updated_at":"2023-03-08T23:55:45.000Z","dependencies_parsed_at":"2022-08-30T05:40:46.434Z","dependency_job_id":null,"html_url":"https://github.com/arpitnath/spacex","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/arpitnath%2Fspacex","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arpitnath%2Fspacex/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arpitnath%2Fspacex/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arpitnath%2Fspacex/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/arpitnath","download_url":"https://codeload.github.com/arpitnath/spacex/tar.gz/refs/heads/staging","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243976493,"owners_count":20377692,"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":["create-react-app","javascript","netlify-deployment","react","react-hooks","react-router","scss","typescript"],"created_at":"2024-10-13T09:29:08.599Z","updated_at":"2025-12-31T00:19:22.948Z","avatar_url":"https://github.com/arpitnath.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003cimg src='https://projectspacex.netlify.app/static/media/Logo.6f4942a5.svg' width='200' \u003e\n\u003c/p\u003e\n\n\u003ch1 align=\"center\"\u003eSpaceX Dash🚀\u003c/h1\u003e\n\n### About\n\nIt is a personal project inspired from [SpaceX Go!](https://github.com/jesusrp98/spacex-go)\n\nIt uses the data from the open-source r/SpaceX REST API, which can be found [here](https://github.com/r-spacex/SpaceX-API).\n\nThis Project was bootstrapped with [create-react-app](https://create-react-app.dev/docs/getting-started/).\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://user-images.githubusercontent.com/67645175/121082833-4cda6800-c7fc-11eb-806d-339a6e688ce9.png\" width='256' hspace=\"4\"\u003e\n  \u003cimg src=\"https://user-images.githubusercontent.com/67645175/121083499-22d57580-c7fd-11eb-9cd7-dd9f6442c37b.png\" width='256' hspace=\"4\"\u003e\n  \u003cimg src=\"https://user-images.githubusercontent.com/67645175/121083717-64662080-c7fd-11eb-9b67-0fbc95a9c3ad.png\" width='256' hspace=\"4\"\u003e\n  \u003cimg src=\"https://user-images.githubusercontent.com/67645175/121083981-bc048c00-c7fd-11eb-93c3-8e8513c8e8f4.png\" width='256' hspace=\"4\"\u003e\n  \u003cimg src=\"https://user-images.githubusercontent.com/67645175/121084128-e8200d00-c7fd-11eb-89d8-d5afa3096c32.png\" width='256' hspace=\"4\"\u003e\n\u003c/p\u003e\n\n## Features\n\n- **Launch tracking \u0026 details**: detailed list of past \u0026 upcoming launches.\n- **Company details**: general company details \u0026 achievements.\n- **Data can be retained in url**: able to filter with launches, and date, and can combine multiple filters. The current page with pagination and filters applied are retained via the URL.\n\n## Run the app locally\n\n```\n$ git clone git@github.com:arpitnath/spacex.git\n\n\n```\n\n\u003e env variable: `REACT_APP_SPACEX_BASE_API=https://api.spacexdata.com/v3/`\n\n```\n$ npm install\n```\n\n`$ npm start` - This will start the application and run on port 3000\n\n## Folder Structure\n\n```\nsrc\n└───index.tsx              # Application entry point\n└───App.tsx                # Application routes\n└───pages/                 # Views of the App\n└───components/            # All the components live here\n└───styles/scss            # StyleSheets\n    └───components/        # component styles\n    └───pages/             # pages styles\n    └───_mixins.scss       # all mixins\n    └───_variables.scss    # scss/sass variables\n    └───styles.module.scss # common styles \u0026 all styles endpoint\n    └───global.scss        # global styles\n└───assets/                # images / logo\n└───helpers\n    └───History.ts         # history object\n    └───Hooks.ts           # Custom Hooks\n    └───icons.ts           # all icons used\n    └───tableheadData.ts   # table head titles\n    └───types.ts           # Types\n    └───utils.ts           # Shared Logic\n\n```\n\n\u003e There you go, run \u0026 edit the project. Enjoy 🚀\n\n## Contributing\n\nIf you want to take the time to make this project better, please go ahead.\nThen, you can open an new [issue](https://github.com/arpitnath/spacex/issues) and create a [PR](https://github.com/arpitnath/spacex/pulls)\n\n\u003e \u003e Feel free to reach out to me @arpitnath if you have any questions or feedback or any suggestion for improvements!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farpitnath%2Fspacex","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Farpitnath%2Fspacex","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farpitnath%2Fspacex/lists"}