{"id":16299279,"url":"https://github.com/rockchalkwushock/rn-firebase-auth","last_synced_at":"2026-05-03T17:34:22.291Z","repository":{"id":103563859,"uuid":"89885912","full_name":"rockchalkwushock/rn-firebase-auth","owner":"rockchalkwushock","description":"Grider RN-Tut#3","archived":false,"fork":false,"pushed_at":"2017-05-01T13:55:28.000Z","size":60,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-09T19:51:55.626Z","etag":null,"topics":["expo","firebase","firebase-auth","react-native","react-native-elements","twilio-api"],"latest_commit_sha":null,"homepage":null,"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/rockchalkwushock.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":"2017-05-01T00:31:51.000Z","updated_at":"2017-05-01T13:56:16.000Z","dependencies_parsed_at":null,"dependency_job_id":"0b0d4790-8a8a-4a69-aade-e29633a25c78","html_url":"https://github.com/rockchalkwushock/rn-firebase-auth","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/rockchalkwushock/rn-firebase-auth","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rockchalkwushock%2Frn-firebase-auth","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rockchalkwushock%2Frn-firebase-auth/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rockchalkwushock%2Frn-firebase-auth/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rockchalkwushock%2Frn-firebase-auth/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rockchalkwushock","download_url":"https://codeload.github.com/rockchalkwushock/rn-firebase-auth/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rockchalkwushock%2Frn-firebase-auth/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32578780,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-03T06:36:36.687Z","status":"ssl_error","status_checked_at":"2026-05-03T06:36:09.306Z","response_time":103,"last_error":"SSL_read: 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":["expo","firebase","firebase-auth","react-native","react-native-elements","twilio-api"],"created_at":"2024-10-10T20:47:25.013Z","updated_at":"2026-05-03T17:34:22.273Z","avatar_url":"https://github.com/rockchalkwushock.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# :closed_lock_with_key: rn-firebase-auth :fire: :fire: :fire:\n\n\u003e_FYI_\n\u003e\n\u003e You must use your phone number if you are using Twilio trial membership.\n\u003e You can only have **one** authorized user at a time so you will need to\n\u003e delete your number from the Authorization tab every time you want to test\n\u003e the application.\n\n## Usage\n\n\u003e **NOTE:** _Replace **rn-otp** everywhere in the code with **YOUR PROJECT NAME** from firebase. This holds true for both repositories._\n\n```bash\n# back-end repository\ngit clone https://github.com/rockchalkwushock/rn-one-time-password.git\ncd rn-one-time-password\nyarn install\ncd functions\ntouch sensitive.js service_accounts.json\n# Place Twilio API data in sensitive.js\n# copy \u0026 paste JSON that is generated from 'Generate New Private Key'\n# found at: https://console.firebase.google.com/project/rn-otp/settings/serviceaccounts/adminsdk\ncd ..\nfirebase deploy --project \u003cname\u003e # must run from root of project directory\n\n# front-end repository\ngit clone https://github.com/rockchalkwushock/rn-firebase-auth.git\ncd rn-firebase-auth\nyarn install\ntouch sensitive.js\n# Place your config object in here.\n# found at: https://console.firebase.google.com/project/rn-otp/overview\n# Replace the baseUrl in /utils/index.js with YOUR_BASE_URL!!!\n# Launch Expo \u0026 give her a go!\n```\n\n## :fire: ES7 Syntax :fire:\n\n* Class\n\n```javascript\nclass MyES7Class extends {\n  // No need for defining the constructor()\n  state = { someState: 123 }\n}\n```\n\n* Methods on Class\n\n```javascript\n// Arrow function bind the context of 'this'\n// lexically. This is okay since it will be called\n// within the class as this._myFunction so there is\n// no need to bind(this) on _myFunction later on in\n// the class.\n_myFunction = () =\u003e {\n  // some code here.\n}\n```\n\n* Async/Await\n\n```javascript\n// before\n_myFunction() {\n  axios.post('someEndpoint', { data: 'to send' })\n    .then(() =\u003e { 'do something' })\n    .catch(e =\u003e { `do something with the error ${e}`});\n}\n\n// async/await like a boss!\n_myFunction = async () =\u003e {\n  try {\n    await axios.post('someEndpoint', { data: 'to send' });\n  } catch (e) {\n    console.log(e);\n  }\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frockchalkwushock%2Frn-firebase-auth","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frockchalkwushock%2Frn-firebase-auth","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frockchalkwushock%2Frn-firebase-auth/lists"}