{"id":18761318,"url":"https://github.com/othastudio/react-native-luminus","last_synced_at":"2025-12-04T02:30:12.863Z","repository":{"id":168275422,"uuid":"643935034","full_name":"othastudio/react-native-luminus","owner":"othastudio","description":"A powerful template for your next React Native project, designed with a focus on developer experience ! 🚀","archived":false,"fork":false,"pushed_at":"2023-07-05T16:17:59.000Z","size":279,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2024-12-29T04:53:49.671Z","etag":null,"topics":[],"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/othastudio.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":"2023-05-22T13:11:23.000Z","updated_at":"2023-07-12T11:23:14.000Z","dependencies_parsed_at":null,"dependency_job_id":"ad976a30-b772-49a7-8011-134d0837e35e","html_url":"https://github.com/othastudio/react-native-luminus","commit_stats":null,"previous_names":["othastudio/react-native-luminus"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/othastudio%2Freact-native-luminus","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/othastudio%2Freact-native-luminus/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/othastudio%2Freact-native-luminus/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/othastudio%2Freact-native-luminus/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/othastudio","download_url":"https://codeload.github.com/othastudio/react-native-luminus/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239654454,"owners_count":19675291,"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-07T18:15:40.265Z","updated_at":"2025-12-04T02:30:12.824Z","avatar_url":"https://github.com/othastudio.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n    \u003cimg alt=\"React Native Luminus\" src=\"https://i.postimg.cc/kG5X4GDK/Logo-rn-luminus.png\" width=\"200\" /\u003e\n\u003c/p\u003e\n\n\u003ch1 align=\"center\"\u003e\n  React Native - Expo Template for large-scale projects\n\u003c/h1\u003e\n\n[![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://opensource.org/licenses/MIT)\n[![React Native](https://img.shields.io/badge/react--native-0.64-blue.svg)](https://reactnative.dev)\n[![Expo](https://img.shields.io/badge/expo-43.0.0-blue.svg)](https://expo.io)\n[![Typescript](https://img.shields.io/badge/typescript-4.3.5-blue.svg)](https://www.typescriptlang.org)\n[![Expo Router](https://img.shields.io/badge/expo--router-2.0.0-blue.svg)](https://github.com/expo/expo/tree/master/packages/react-navigation)\n[![Axios](https://img.shields.io/badge/axios-0.21.1-blue.svg)](https://github.com/axios/axios)\n\n\n\n\n## Introduction\n\nWelcome to our powerful template for React Native projects, specifically designed for large-scale applications. This template focuses on providing an exceptional developer experience and optimizing performance. By incorporating cutting-edge technologies such as Typescript, Expo, Expo Router, and Axios, we've created a streamlined development process that will supercharge your next project.\n\n## Features\n\n- **Typescript**: Utilize the benefits of static typing and enhanced tooling with the Typescript language.\n- **Expo**: Leverage the power of Expo, a set of tools and services for developing, building, and deploying universal apps.\n- **Expo Router**: Seamlessly navigate between screens with Expo Router, a routing library specifically designed for Expo projects.\n- **Axios**: Simplify your HTTP requests with Axios, a promise-based HTTP client for making API calls effortlessly.\n\n## Prerequisites\n\nBefore you get started, ensure that you have the following prerequisites installed on your machine:\n\n- Node.js (version 12 or above)\n- Yarn or npm package manager\n- Expo CLI (globally installed)\n- Git (optional, but recommended)\n\n## Getting Started\n\nFollow these steps to set up the project on your local machine:\n\n1. Clone the repository: `git clone https://github.com/your-username/your-project.git`.\n2. Change into the project's directory: `cd your-project`.\n3. Install the dependencies: `yarn install` or `npm install`.\n4. Start the development server: `expo start`.\n\n## Project Structure\n\nThe template follows a well-organized structure to keep your codebase clean and maintainable. Here's an overview of the project structure:\n\n```\nyour-project/\n├── src/\n│ ├── components/\n│ ├── screens/\n│ ├── navigation/\n│ ├── services/\n│ ├── utils/\n│ ├── themes/\n│ └── App.tsx\n├── .expo/\n├── .gitignore\n├── package.json\n└── README.md\n```\n\n- **src**: Contains all the source code files.\n- **components**: Houses reusable components that can be shared across different screens.\n- **screens**: Includes individual screen components for different sections of your application.\n- **navigation**: Contains navigation-related code and configuration.\n- **services**: Provides services for making API calls and handling data.\n- **utils**: Contains utility functions and helpers.\n- **themes**: Houses theme-related files and styles.\n- **App.tsx**: The entry point of your application.\n\nFeel free to adapt the structure to fit the needs of your project.\n\n## Contributing\n\nWe welcome contributions from the community. To contribute to this project, please follow these steps:\n\n1. Fork the repository.\n2. Create a new branch: `git checkout -b my-feature`.\n3. Make your changes and commit them: `git commit -am 'Add some feature'`.\n4. Push the changes to your branch: `git push origin my-feature`.\n5. Submit a pull request.\n\nPlease ensure that your pull request adheres to our coding guidelines and passes all tests.\n\n## License\n\nThis project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.\n\n## Acknowledgments\n\nWe would like to express our gratitude to the developers and contributors of the technologies used in this project. Their hard work and dedication are greatly appreciated.\n\n---\n\nWe hope this template serves as a solid foundation for your next React Native project. Happy coding! 🚀\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fothastudio%2Freact-native-luminus","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fothastudio%2Freact-native-luminus","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fothastudio%2Freact-native-luminus/lists"}