{"id":19141598,"url":"https://github.com/reinanhs/tiktok-ui","last_synced_at":"2025-10-12T11:46:37.987Z","repository":{"id":38922228,"uuid":"233877740","full_name":"ReinanHS/tiktok-ui","owner":"ReinanHS","description":"Tik Tok UI Clone","archived":false,"fork":false,"pushed_at":"2023-01-27T04:35:25.000Z","size":22536,"stargazers_count":13,"open_issues_count":11,"forks_count":13,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-05-06T23:46:54.226Z","etag":null,"topics":["react","react-native","tiktok","ui-design"],"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/ReinanHS.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":"2020-01-14T15:53:01.000Z","updated_at":"2023-11-06T02:28:11.000Z","dependencies_parsed_at":"2023-02-15T05:31:28.166Z","dependency_job_id":null,"html_url":"https://github.com/ReinanHS/tiktok-ui","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ReinanHS/tiktok-ui","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ReinanHS%2Ftiktok-ui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ReinanHS%2Ftiktok-ui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ReinanHS%2Ftiktok-ui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ReinanHS%2Ftiktok-ui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ReinanHS","download_url":"https://codeload.github.com/ReinanHS/tiktok-ui/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ReinanHS%2Ftiktok-ui/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279011180,"owners_count":26084900,"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","status":"online","status_checked_at":"2025-10-12T02:00:06.719Z","response_time":53,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["react","react-native","tiktok","ui-design"],"created_at":"2024-11-09T07:23:59.570Z","updated_at":"2025-10-12T11:46:37.971Z","avatar_url":"https://github.com/ReinanHS.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Tik Tok UI Clone\nTikTok, also known as Douyin in China, is a media app for creating and sharing short videos.\n\n# Interactions\n\u003ccenter\u003e\n\u003cdiv\u003e\n  \u003cimg width=\"200\" alt=\"portfolio_view\" src=\"https://i.imgur.com/iJQlwIs.jpg\"\u003e\n  \u003cimg width=\"200\" alt=\"portfolio_view\" src=\"https://i.imgur.com/kIAyQR4.jpg\"\u003e\n\u003c/div\u003e\n\u003c/center\u003e\n\n## What is the purpose of this repository?\n\nI created this repository to study React Native and try to recreate several famous app designs.\n\n## Prerequisites\n\n- Git (https://git-scm.com/)\n- Node (https://nodejs.org)\n- Android Studio (https://developer.android.com/studio)\n\n## Development environment\n\n- Binaries\n  - Node: 12.9.1\n  - Yarn: 1.21.1\n  - npm: 6.13.7\n- npmPackages\n  - react: 16.9.0\n  - react-native: 0.61.5\n\n\n## How to install?\n\nThe first thing we have to do is download the repository for our development environment\n\n```sh\ngit clone https://github.com/ReinanHS/tiktok-ui.git\n```\n\n![GITHUB](https://media.giphy.com/media/J2IacsJPTXl8jflZqB/giphy.gif)\n\nRun the following command to download the project's dependencies\n\n```sh\nnpm install\n```\n\n![NPM](https://media.giphy.com/media/H61nMudiXtK8vSy5dP/giphy.gif)\n\nNow that all the dependencies have been downloaded we will install the application on the emulator with the following command\n\n```sh\nnpx react-native run-android\n```\n\n![android](https://media.giphy.com/media/YoKEpAluJiOSEITYpe/giphy.gif)\n\n### If your NodeJS version is greater than 12.10\n\n```txt\nExpo fails to start the project: error Invalid regular expression: /(.*\\\\__fixtures__\n```\n\nIf you have a problem with this error, follow these steps\n\nto solve this problem you have to change this file `\\node_modules\\metro-config\\src\\defaults\\blacklist.js` there is an invalid regular expression that needed changed. I changed the first expression under `sharedBlacklist` from:\n\n```js\nvar sharedBlacklist = [\n  /node_modules[/\\\\]react[/\\\\]dist[/\\\\].*/,\n  /website\\/node_modules\\/.*/,\n  /heapCapture\\/bundle\\.js/,\n  /.*\\/__tests__\\/.*/\n];\n```\n\nto:\n\n```js\nvar sharedBlacklist = [\n  /node_modules[\\/\\\\]react[\\/\\\\]dist[\\/\\\\].*/,\n  /website\\/node_modules\\/.*/,\n  /heapCapture\\/bundle\\.js/,\n  /.*\\/__tests__\\/.*/\n];\n```\n\nfor more details see [Stackoverflow](https://stackoverflow.com/questions/58120990/how-to-resolve-the-error-on-react-native-start)\n\n### Installation video tutorial\n\nSee more details in this [video](https://youtu.be/T0G-G76UNdw)\n\n## Contributors\n\nWe would like to thank the following contributors for helping to develop this repository\n\n- ReinanHS\n\nHelp the project, make a difference List of Collaborators\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freinanhs%2Ftiktok-ui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Freinanhs%2Ftiktok-ui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freinanhs%2Ftiktok-ui/lists"}