{"id":15146194,"url":"https://github.com/asifvora/sound-base-app","last_synced_at":"2026-01-19T06:32:31.369Z","repository":{"id":134925687,"uuid":"175405014","full_name":"asifvora/sound-base-app","owner":"asifvora","description":"Sound base app with react native.","archived":false,"fork":false,"pushed_at":"2019-03-13T11:52:59.000Z","size":4662,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-05-30T00:41:47.347Z","etag":null,"topics":["app","application","develop","hybrid","hybrid-application","javascript","js","music","native","react","react-native","react-native-app","reactjs","redux","soundcloud","soundcloud-api","soundcloud-player","webpack"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/asifvora.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2019-03-13T11:12:41.000Z","updated_at":"2019-04-12T06:08:02.000Z","dependencies_parsed_at":null,"dependency_job_id":"e5208b58-735a-4a87-9b0e-fb56a37499e3","html_url":"https://github.com/asifvora/sound-base-app","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/asifvora/sound-base-app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/asifvora%2Fsound-base-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/asifvora%2Fsound-base-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/asifvora%2Fsound-base-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/asifvora%2Fsound-base-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/asifvora","download_url":"https://codeload.github.com/asifvora/sound-base-app/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/asifvora%2Fsound-base-app/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28562405,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-19T03:31:16.861Z","status":"ssl_error","status_checked_at":"2026-01-19T03:31:15.069Z","response_time":67,"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":["app","application","develop","hybrid","hybrid-application","javascript","js","music","native","react","react-native","react-native-app","reactjs","redux","soundcloud","soundcloud-api","soundcloud-player","webpack"],"created_at":"2024-09-26T12:01:09.895Z","updated_at":"2026-01-19T06:32:31.348Z","avatar_url":"https://github.com/asifvora.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"#  SoundBase\n[![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat)](http://standardjs.com/)\n\n* Standard compliant React Native App Utilizing [Ignite](https://github.com/infinitered/ignite)\n\n## :arrow_up: How to Setup\n\n**Step 1:** git clone this repo:\n\n**Step 2:** cd to the cloned repo:\n\n**Step 3:** Install the Application with `yarn` or `npm i`\n\n\n## :arrow_forward: How to Run App\n\n1. cd to the repo\n2. Run Build for either OS\n  * for iOS\n    * run `react-native run-ios`\n  * for Android\n    * Run Genymotion\n    * run `react-native run-android`\n\n## :no_entry_sign: Standard Compliant\n\n[![js-standard-style](https://cdn.rawgit.com/feross/standard/master/badge.svg)](https://github.com/feross/standard)\nThis project adheres to Standard.  Our CI enforces this, so we suggest you enable linting to keep your project compliant during development.\n\n**To Lint on Commit**\n\nThis is implemented using [husky](https://github.com/typicode/husky). There is no additional setup needed.\n\n**Bypass Lint**\n\nIf you have to bypass lint for a special commit that you will come back and clean (pushing something to a branch etc.) then you can bypass git hooks with adding `--no-verify` to your commit command.\n\n**Understanding Linting Errors**\n\nThe linting rules are from JS Standard and React-Standard.  [Regular JS errors can be found with descriptions here](http://eslint.org/docs/rules/), while [React errors and descriptions can be found here](https://github.com/yannickcr/eslint-plugin-react).\n\n## :closed_lock_with_key: Secrets\n\nThis project uses [react-native-config](https://github.com/luggit/react-native-config) to expose config variables to your javascript code in React Native. You can store API keys\nand other sensitive information in a `.env` file:\n\n```\nAPI_URL=https://myapi.com\nGOOGLE_MAPS_API_KEY=abcdefgh\n```\n\nand access them from React Native like so:\n\n```\nimport Secrets from 'react-native-config'\n\nSecrets.API_URL  // 'https://myapi.com'\nSecrets.GOOGLE_MAPS_API_KEY  // 'abcdefgh'\n```\n\nThe `.env` file is ignored by git keeping those secrets out of your repo.\n\n### Get started:\n1. Copy .env.example to .env\n2. Add your config variables\n3. Follow instructions at [https://github.com/luggit/react-native-config#setup](https://github.com/luggit/react-native-config#setup)\n4. Done!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fasifvora%2Fsound-base-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fasifvora%2Fsound-base-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fasifvora%2Fsound-base-app/lists"}