{"id":23076586,"url":"https://github.com/corbaz/exporn","last_synced_at":"2025-06-29T09:35:35.034Z","repository":{"id":227278807,"uuid":"770972648","full_name":"corbaz/expoRN","owner":"corbaz","description":null,"archived":false,"fork":false,"pushed_at":"2024-04-21T13:59:11.000Z","size":721,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-09T01:39:41.347Z","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/corbaz.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-03-12T13:17:41.000Z","updated_at":"2024-04-21T13:59:14.000Z","dependencies_parsed_at":"2024-04-21T15:33:47.009Z","dependency_job_id":"73f8192e-14e8-4aca-9f0f-a9dbf8ec02a2","html_url":"https://github.com/corbaz/expoRN","commit_stats":null,"previous_names":["corbaz/exporn"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/corbaz%2FexpoRN","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/corbaz%2FexpoRN/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/corbaz%2FexpoRN/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/corbaz%2FexpoRN/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/corbaz","download_url":"https://codeload.github.com/corbaz/expoRN/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246998229,"owners_count":20866696,"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-12-16T09:41:47.123Z","updated_at":"2025-04-03T12:16:37.336Z","avatar_url":"https://github.com/corbaz.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"```bash\n# Crear proyecto\n# React Native 0.73.6 - Expo 50.0.14 - Node 18 - React 18.2 -Tailwind\nnpx create-expo-app expoRN\n\no\n\nbunx create-expo-app expoRN\n\n# ATENCION node_modules/expo/AppEntry.js\nimport App from '../../src/App';\n\n# Clonar\ngit clone https://github.com/corbaz/expoRN.git\n\n# Crear repositorio\ngit init\n\ngit add .\n\ngit commit -m \"first commit\"\n\ngit branch -M main\n\ngit remote add origin https://github.com/corbaz/expoRN.git\n\ngit push -u origin main\no\ngit push --set-upstream origin main --force\n\n✔ Downloaded and extracted project files.\n\n✔ Installed JavaScript dependencies.\n\n✅ Your project is ready!\n\nTo run your project, navigate to the directory and run one of the following npm commands.\n\n```bash\n- cd expoRN\n- npm start o npx expo start o yarn start o yarn expo start\n- npm run android\n- npm run ios\n- npm run web\n```\n\nA new version of `create-expo-app` is available\nYou can update by running:\n\n```bash\nnpm install -g create-expo-app\n\nnpx expo install react-native-web react-dom @expo/metro-runtime \n\n\nlsof -i :8081\n\nkill 93928\n\nlsof -i tcp:3000\n```\n\n```typescript\nimport { StatusBar } from \"expo-status-bar\";\nimport { Platform, StyleSheet, Text, View } from \"react-native\";\n\nexport default function App() {\n    return (\n        \u003cView style={styles.container}\u003e\n            \u003cText\n                style={[\n                    styles.title,\n                    {\n                        color: Platform.OS === \"ios\" ? \"white\" : \"blue\",\n                        fontSize: Platform.OS === \"ios\" ? 40 : 42,\n                    },\n                ]}\n            \u003e\n                EXPO JCC!\n            \u003c/Text\u003e\n            \u003cStatusBar style=\"auto\" /\u003e\n        \u003c/View\u003e\n    );\n}\n\nconst styles = StyleSheet.create({\n    container: {\n        flex: 1,\n        backgroundColor: \"lightblue\",\n        alignItems: \"center\",\n        justifyContent: \"center\",\n    },\n    title: {\n        fontSize: 60,\n        fontWeight: \"bold\",\n        color: \"yellow\",\n    },\n});\n```\n\n## Expo CLI\n\nnpx expo --help\n\n  Usage\n    $ npx expo \u003ccommand\u003e\n\n  Commands\n\n    start \n    export\n    run:ios,\n    run:android, \n    prebuild\n    install\n    customize\n    config\n    login\n    logout\n    whoami\n    register\n\n  Options:\n\n    --version, -v   Version number\n\n    --help, -h      Usage info\n\n  For more info run a command with the --help flag\n  \n    $ npx expo start --help\n\n## Expo Snack - Emulador Online\n\nEl código de React Native crea aplicaciones nativas multiplataforma con JavaScript y React.\n\nhttps://staging-snack.expo.dev/\n\n## Cloudflared\n\ncloudflared tunnel --url http://localhost:8081\n\n## EAS-cli Expo Application Service\n\n```bash\nnpm install -g eas-cli\no\nbun install -g eas-cli\n\neas whoami  # Respuesta Not logged in o jcc\n\neas login # Pide usuario y contraseña :jcc\n```\n\n```bash\neas --help\n```\n\n```bash \neas build --platform ios --profile preview\n```\n----\n\n```bash\neas build --platform android --profile preview\n```\n\nGITLAB:\n\n  • git clone \u003crepository_url\u003e clona un repositorio de GitLab en tu máquina local.\n\n    • \u003crepository_url\u003e es la URL del repositorio de GitLab que deseas clonar.\n\n\n  • Ejemplo 1:\n\n      ```shell\n      git clone https://gitlab.com/usuario/repo.git\n\n\n  • Ejemplo 2:\n\n      ```shell\n      git clone git@gitlab.com:usuario/repo.git\n\n\n  • Ejemplo 3:\n\n      ```shell\n      git clone https://usuario@gitlab.com/usuario/repo.git","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcorbaz%2Fexporn","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcorbaz%2Fexporn","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcorbaz%2Fexporn/lists"}