{"id":26829970,"url":"https://github.com/farhoudshapouran/create-rn-app","last_synced_at":"2026-04-11T09:05:56.926Z","repository":{"id":211253086,"uuid":"728381551","full_name":"farhoudshapouran/create-rn-app","owner":"farhoudshapouran","description":"❯ Customizable and user-friendly React Native command line tools","archived":false,"fork":false,"pushed_at":"2023-12-07T11:05:20.000Z","size":232,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-30T18:42:17.214Z","etag":null,"topics":["android","bun","cli","expo-modules","ios","javascript","npm","react-native","react-native-web","react-navigation","typescript","yarn"],"latest_commit_sha":null,"homepage":"","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/farhoudshapouran.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}},"created_at":"2023-12-06T20:25:51.000Z","updated_at":"2024-11-20T13:37:50.000Z","dependencies_parsed_at":"2023-12-07T11:49:59.540Z","dependency_job_id":null,"html_url":"https://github.com/farhoudshapouran/create-rn-app","commit_stats":null,"previous_names":["farhoudshapouran/create-rn-app"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/farhoudshapouran/create-rn-app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/farhoudshapouran%2Fcreate-rn-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/farhoudshapouran%2Fcreate-rn-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/farhoudshapouran%2Fcreate-rn-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/farhoudshapouran%2Fcreate-rn-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/farhoudshapouran","download_url":"https://codeload.github.com/farhoudshapouran/create-rn-app/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/farhoudshapouran%2Fcreate-rn-app/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31674626,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-11T08:18:19.405Z","status":"ssl_error","status_checked_at":"2026-04-11T08:17:08.892Z","response_time":54,"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":["android","bun","cli","expo-modules","ios","javascript","npm","react-native","react-native-web","react-navigation","typescript","yarn"],"created_at":"2025-03-30T13:29:22.617Z","updated_at":"2026-04-11T09:05:56.894Z","avatar_url":"https://github.com/farhoudshapouran.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://raw.githubusercontent.com/farhoudshapouran/create-rn-app/main/media/banner.png\" alt=\"Create RN App\" width=\"500\" /\u003e\n\u003c/p\u003e\n\n\u003ch1 align=\"center\"\u003e❯ npx create-rn-app\u003c/h1\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003cb\u003eCustomizable, beautiful and user-friendly React Native command line tools\u003c/b\u003e\n\u003c/p\u003e\n\nThe easiest way to get started with React Native is by using `create-rn-app`. This CLI tool enables you to quickly start building a new React Native application, with everything set up for you.\n\n![split](https://raw.githubusercontent.com/farhoudshapouran/create-rn-app/main/media/split.png)\n\n### Interactive\n\nYou can create a new project interactively by running:\n\n```bash\nnpx create-rn-app\n# or\nyarn create rn-app\n# or\npnpm create rn-app\n# or\nbunx create-rn-app\n```\n\nYou will be asked for the name of your project, and then whether you want to\ncreate a TypeScript project:\n\n```bash\n✔ Would you like to use TypeScript? … No / Yes\n```\n\nSelect **Yes** to install the necessary types/dependencies and create a new TS project.\n\n### Non-interactive\n\nYou can also pass command line arguments to set up a new project\nnon-interactively. See `create-rn-app --help`:\n\n```bash\ncreate-rn-app \u003cproject-directory\u003e [options]\n\nOptions:\n  -V, --version                      output the version number\n  --ts, --typescript\n\n    Initialize as a TypeScript project. (default)\n\n  --js, --javascript\n\n    Initialize as a JavaScript project.\n\n  --use-npm\n\n    Explicitly tell the CLI to bootstrap the app using npm\n\n  --use-yarn\n\n    Explicitly tell the CLI to bootstrap the app using Yarn\n\n  --use-bun\n\n    Explicitly tell the CLI to bootstrap the app using Bun\n\n  -e, --example [name]|[github-url]\n\n    An example to bootstrap the app with. You can use an example name\n    from the Create-RN-App repo or a GitHub URL. The URL can use\n    any branch and/or subdirectory\n\n  --example-path \u003cpath-to-example\u003e\n\n    In a rare case, your GitHub URL might contain a branch name with\n    a slash (e.g. bug/fix-1) and the path to the example (e.g. foo/bar).\n    In this case, you must specify the path to the example separately:\n    --example-path foo/bar\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffarhoudshapouran%2Fcreate-rn-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffarhoudshapouran%2Fcreate-rn-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffarhoudshapouran%2Fcreate-rn-app/lists"}