Giter VIP home page Giter VIP logo

exporn's Introduction

# Crear proyecto
# React Native 0.73.6 - Expo 50.0.14 - Node 18 - React 18.2 -Tailwind
npx create-expo-app expoRN

o

bunx create-expo-app expoRN

# ATENCION node_modules/expo/AppEntry.js
import App from '../../src/App';

# Clonar
git clone https://github.com/corbaz/expoRN.git

# Crear repositorio
git init

git add .

git commit -m "first commit"

git branch -M main

git remote add origin https://github.com/corbaz/expoRN.git

git push -u origin main
o
git push --set-upstream origin main --force

✔ Downloaded and extracted project files.

✔ Installed JavaScript dependencies.

✅ Your project is ready!

To run your project, navigate to the directory and run one of the following npm commands.

```bash
- cd expoRN
- npm start o npx expo start o yarn start o yarn expo start
- npm run android
- npm run ios
- npm run web

A new version of create-expo-app is available You can update by running:

npm install -g create-expo-app

npx expo install react-native-web react-dom @expo/metro-runtime 


lsof -i :8081

kill 93928

lsof -i tcp:3000
import { StatusBar } from "expo-status-bar";
import { Platform, StyleSheet, Text, View } from "react-native";

export default function App() {
    return (
        <View style={styles.container}>
            <Text
                style={[
                    styles.title,
                    {
                        color: Platform.OS === "ios" ? "white" : "blue",
                        fontSize: Platform.OS === "ios" ? 40 : 42,
                    },
                ]}
            >
                EXPO JCC!
            </Text>
            <StatusBar style="auto" />
        </View>
    );
}

const styles = StyleSheet.create({
    container: {
        flex: 1,
        backgroundColor: "lightblue",
        alignItems: "center",
        justifyContent: "center",
    },
    title: {
        fontSize: 60,
        fontWeight: "bold",
        color: "yellow",
    },
});

Expo CLI

npx expo --help

Usage $ npx expo

Commands

start 
export
run:ios,
run:android, 
prebuild
install
customize
config
login
logout
whoami
register

Options:

--version, -v   Version number

--help, -h      Usage info

For more info run a command with the --help flag

$ npx expo start --help

Expo Snack - Emulador Online

El código de React Native crea aplicaciones nativas multiplataforma con JavaScript y React.

https://staging-snack.expo.dev/

Cloudflared

cloudflared tunnel --url http://localhost:8081

EAS-cli Expo Application Service

npm install -g eas-cli
o
bun install -g eas-cli

eas whoami  # Respuesta Not logged in o jcc

eas login # Pide usuario y contraseña :jcc
eas --help
eas build --platform ios --profile preview

eas build --platform android --profile preview

GITLAB:

• git clone <repository_url> clona un repositorio de GitLab en tu máquina local.

• <repository_url> es la URL del repositorio de GitLab que deseas clonar.

• Ejemplo 1:

  ```shell
  git clone https://gitlab.com/usuario/repo.git

• Ejemplo 2:

  ```shell
  git clone [email protected]:usuario/repo.git

• Ejemplo 3:

  ```shell
  git clone https://[email protected]/usuario/repo.git

exporn's People

Contributors

corbaz avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.