{"id":18554742,"url":"https://github.com/developersailor/rn-jsonplaceholder","last_synced_at":"2025-05-15T12:09:11.029Z","repository":{"id":240931270,"uuid":"803322693","full_name":"developersailor/rn-jsonplaceholder","owner":"developersailor","description":null,"archived":false,"fork":false,"pushed_at":"2024-05-21T12:57:10.000Z","size":1211,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-17T11:14:50.760Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/developersailor.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-05-20T13:58:39.000Z","updated_at":"2024-05-21T12:57:14.000Z","dependencies_parsed_at":"2024-05-21T14:00:05.884Z","dependency_job_id":"a9d888b4-71f9-41bc-8b43-df7c91908549","html_url":"https://github.com/developersailor/rn-jsonplaceholder","commit_stats":null,"previous_names":["developersailor/rn-jsonplaceholder"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/developersailor%2Frn-jsonplaceholder","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/developersailor%2Frn-jsonplaceholder/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/developersailor%2Frn-jsonplaceholder/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/developersailor%2Frn-jsonplaceholder/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/developersailor","download_url":"https://codeload.github.com/developersailor/rn-jsonplaceholder/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254337605,"owners_count":22054254,"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","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":[],"created_at":"2024-11-06T21:23:40.027Z","updated_at":"2025-05-15T12:09:11.009Z","avatar_url":"https://github.com/developersailor.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Welcome to your new ignited app!\n\n[![CircleCI](https://circleci.com/gh/infinitered/ignite.svg?style=svg)](https://circleci.com/gh/infinitered/ignite)\n\n## The latest and greatest boilerplate for Infinite Red opinions\n\nThis is the boilerplate that [Infinite Red](https://infinite.red) uses as a way to test bleeding-edge changes to our React Native stack.\n\nCurrently includes:\n\n- React Native\n- React Navigation\n- MobX State Tree\n- TypeScript\n- And more!\n\n## Quick Start\n\nThe Ignite boilerplate project's structure will look similar to this:\n\n```\nignite-project\n├── app\n│   ├── components\n│   ├── config\n│   ├── i18n\n│   ├── models\n│   ├── navigators\n│   ├── screens\n│   ├── services\n│   ├── theme\n│   ├── utils\n│   └── app.tsx\n├── assets\n│   ├── icons\n│   └── images\n├── test\n│   ├── __snapshots__\n│   ├── mockFile.ts\n│   └── setup.ts\n├── README.md\n├── android\n│   ├── app\n│   ├── build.gradle\n│   ├── gradle\n│   ├── gradle.properties\n│   ├── gradlew\n│   ├── gradlew.bat\n│   ├── keystores\n│   └── settings.gradle\n├── ignite\n│   └── templates\n|       |── app-icon\n│       ├── component\n│       ├── model\n│       ├── navigator\n│       └── screen\n├── index.js\n├── ios\n│   ├── IgniteProject\n│   ├── IgniteProject-tvOS\n│   ├── IgniteProject-tvOSTests\n│   ├── IgniteProject.xcodeproj\n│   └── IgniteProjectTests\n├── .env\n└── package.json\n\n```\n\n### ./app directory\n\nIncluded in an Ignite boilerplate project is the `app` directory. This is a directory you would normally have to create when using vanilla React Native.\n\nThe inside of the `app` directory looks similar to the following:\n\n```\napp\n├── components\n├── config\n├── i18n\n├── models\n├── navigators\n├── screens\n├── services\n├── theme\n├── utils\n└── app.tsx\n```\n\n**components**\nThis is where your reusable components live which help you build your screens.\n\n**i18n**\nThis is where your translations will live if you are using `react-native-i18n`.\n\n**models**\nThis is where your app's models will live. Each model has a directory which will contain the `mobx-state-tree` model file, test file, and any other supporting files like actions, types, etc.\n\n**navigators**\nThis is where your `react-navigation` navigators will live.\n\n**screens**\nThis is where your screen components will live. A screen is a React component which will take up the entire screen and be part of the navigation hierarchy. Each screen will have a directory containing the `.tsx` file, along with any assets or other helper files.\n\n**services**\nAny services that interface with the outside world will live here (think REST APIs, Push Notifications, etc.).\n\n**theme**\nHere lives the theme for your application, including spacing, colors, and typography.\n\n**utils**\nThis is a great place to put miscellaneous helpers and utilities. Things like date helpers, formatters, etc. are often found here. However, it should only be used for things that are truly shared across your application. If a helper or utility is only used by a specific component or model, consider co-locating your helper with that component or model.\n\n**app.tsx** This is the entry point to your app. This is where you will find the main App component which renders the rest of the application.\n\n### ./assets directory\n\nThis directory is designed to organize and store various assets, making it easy for you to manage and use them in your application. The assets are further categorized into subdirectories, including `icons` and `images`:\n\n```\nassets\n├── icons\n└── images\n```\n\n**icons**\nThis is where your icon assets will live. These icons can be used for buttons, navigation elements, or any other UI components. The recommended format for icons is PNG, but other formats can be used as well.\n\nIgnite comes with a built-in `Icon` component. You can find detailed usage instructions in the [docs](https://github.com/infinitered/ignite/blob/master/docs/Components-Icon.md).\n\n**images**\nThis is where your images will live, such as background images, logos, or any other graphics. You can use various formats such as PNG, JPEG, or GIF for your images.\n\nAnother valuable built-in component within Ignite is the `AutoImage` component. You can find detailed usage instructions in the [docs](https://github.com/infinitered/ignite/blob/master/docs/Components-AutoImage.md).\n\nHow to use your `icon` or `image` assets:\n\n```\nimport { Image } from 'react-native';\n\nconst MyComponent = () =\u003e {\n  return (\n    \u003cImage source={require('../assets/images/my_image.png')} /\u003e\n  );\n};\n```\n\n### ./ignite directory\n\nThe `ignite` directory stores all things Ignite, including CLI and boilerplate items. Here you will find templates you can customize to help you get started with React Native.\n\n### ./test directory\n\nThis directory will hold your Jest configs and mocks.\n\n## Running Maestro end-to-end tests\n\nFollow our [Maestro Setup](https://ignitecookbook.com/docs/recipes/MaestroSetup) recipe from the [Ignite Cookbook](https://ignitecookbook.com/)!\n\n## Previous Boilerplates\n\n- [2018 aka Bowser](https://github.com/infinitered/ignite-bowser)\n- [2017 aka Andross](https://github.com/infinitered/ignite-andross)\n- [2016 aka Ignite 1.0](https://github.com/infinitered/ignite-ir-boilerplate-2016)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevelopersailor%2Frn-jsonplaceholder","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevelopersailor%2Frn-jsonplaceholder","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevelopersailor%2Frn-jsonplaceholder/lists"}