{"id":21135705,"url":"https://github.com/furkan-dogu/auth","last_synced_at":"2026-04-17T00:02:23.890Z","repository":{"id":243075914,"uuid":"811385973","full_name":"furkan-dogu/Auth","owner":"furkan-dogu","description":"This project is a basic user authentication system built with React Native. Users can sign up, log in, and log out. The app handles authentication states and navigation based on the user's authentication status.","archived":false,"fork":false,"pushed_at":"2024-06-09T15:50:32.000Z","size":862,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-14T12:45:13.632Z","etag":null,"topics":["async-storage","axios","expo","react","react-native","react-native-safe-area-context","react-native-screens","react-navigation"],"latest_commit_sha":null,"homepage":"","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/furkan-dogu.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-06-06T13:51:18.000Z","updated_at":"2024-06-09T15:52:32.000Z","dependencies_parsed_at":"2024-06-09T17:13:19.377Z","dependency_job_id":null,"html_url":"https://github.com/furkan-dogu/Auth","commit_stats":null,"previous_names":["furkan-dogu/auth"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/furkan-dogu/Auth","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/furkan-dogu%2FAuth","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/furkan-dogu%2FAuth/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/furkan-dogu%2FAuth/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/furkan-dogu%2FAuth/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/furkan-dogu","download_url":"https://codeload.github.com/furkan-dogu/Auth/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/furkan-dogu%2FAuth/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31909235,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-16T18:22:33.417Z","status":"ssl_error","status_checked_at":"2026-04-16T18:21:47.142Z","response_time":69,"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":["async-storage","axios","expo","react","react-native","react-native-safe-area-context","react-native-screens","react-navigation"],"created_at":"2024-11-20T06:57:56.378Z","updated_at":"2026-04-17T00:02:23.837Z","avatar_url":"https://github.com/furkan-dogu.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# React Native Authentication Project\n\n\u003cdiv align=\"center\"\u003e\n  \u003cimg src=\"./assets/screenshots/auth.gif\" /\u003e\n\u003c/div\u003e\n\n## About the Project\n\nThis project is a basic user authentication system built with React Native. Users can sign up, log in, and log out. The app handles authentication states and navigation based on the user's authentication status.\n\n## Table of Contents\n\n- [Features](#features)\n- [Technologies Used](#technologies-used)\n- [Usage](#usage)\n- [Project Skeleton](#project-skeleton)\n- [Screenshots](#screenshots)\n\n## Features\n- User registration and login system.\n- Authentication using JSON Web Tokens (JWT).\n- Navigation between screens and logout functionality.\n- Displays \"Home Screen\" after successful login.\n- Persistent authentication state using local storage.\n\n## Technologies Used\n\n- `@react-native-async-storage/async-storage`: AsyncStorage module.\n- `@react-navigation/native and @react-navigation/native-stack`: React Navigation library.\n- `axios`: HTTP client.\n- `expo`: Expo SDK.\n- `react`: React library.\n- `react-native`: React Native framework.\n- `react-native-safe-area-context and react-native-screens`: React Native helper libraries.\n\n## Usage\n\n### Sign Up:\n\n- Open the app and navigate to the \"Sign Up\" screen.\n- Enter your email and password to create a new account.\n- Click the \"Sign Up\" button. If the registration is successful, you will be automatically logged in and redirected to the Home screen.\n\n### Login:\n\n- If you already have an account, navigate to the \"Login\" screen.\n- Enter your email and password.\n- Click the \"Login\" button. Upon successful authentication, you will be redirected to the Home screen.\n\n### Logout:\n\n- After logging in, you can log out by pressing the \"Logout\" button in the Home screen’s header.\n\n### Persistent Authentication\n\n- The app stores the authentication token in AsyncStorage to maintain the user's session even after the app is closed and reopened.\n- Upon launching, the app checks for a stored token and updates the authentication state accordingly.\n\n## Project Skeleton\n\n```\nReact Native Authentication Project (folder)\n│\n├── assets\n│     └── [images]\n├── components\n│     ├── AuthContent.jsx \n│     ├── AuthForm.jsx \n│     ├── Button.jsx \n│     ├── ButtonWhite.jsx \n│     ├── Input.jsx       \n│     └── Loading.jsx \n├── context      \n│     └── AuthContext.jsx \n├── helpers      \n│     └── auth.js\n├── screens\n│     ├── HomeScreen.jsx \n│     ├── LoginScreen.jsx      \n│     └── SignUpScreen.jsx \n├── .gitignore\n├── App.js\n├── app.json\n├── babel.config.js\n├── package-lock.json\n├── package.json\n└── README.md\n```\n\n## Screenshots\n\n\u003cdiv align=\"center\"\u003e\n  \u003cimg src=\"./assets/screenshots/LoginScreen.png\"  width=\"32%\" height=\"500\" /\u003e\n  \u003cimg src=\"./assets/screenshots/SignUpScreen.png\"  width=\"32%\" height=\"500\" /\u003e\n  \u003cimg src=\"./assets/screenshots/HomeScreen.png\"  width=\"32%\" height=\"500\" /\u003e\n\u003c/div\u003e","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffurkan-dogu%2Fauth","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffurkan-dogu%2Fauth","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffurkan-dogu%2Fauth/lists"}