Delete all npm packages or plugins (dependencies) in React or React Native

Delete all npm packages or plugins (dependencies) in React or React Native

Tiempo de lectura: < 1 minuto Reading time: < 1 minute If we want to delete the project-level (not global) installed dependencies within our React project, we need to do the following: Delete the folder called node_modules.rm node_modules Delete package-lock.json:rm package-lock.json Now, if we want to reinstall the dependencies, we need to execute: npm install This way, we can restore the ... Read more

Solucionar conflicto con paquete npm install

Solucionar conflicto con paquete npm install

Tiempo de lectura: 2 minutos Reading time: < 1 minute If you encounter an error message like the following when installing a package: npm WARN config global --global, --local are deprecated. Use --location=global instead.npm ERR! code ERESOLVEnpm ERR! ERESOLVE could not resolvenpm ERR!npm ERR! While resolving: @react-navigation/stack@6.2.2npm ERR! Found: @react-navigation/native@5.9.8npm ERR! node_modules/@react-navigation/nativenpm ERR! @react-navigation/native@”^5.9.8″ from the root projectnpm ERR!npm ERR! ... Read more

Solution to the Error ‘Execution failed for task ‘:app:checkDebugAarMetadata” when running our Android Studio application

Solution to the Error ‘Execution failed for task ‘:app:checkDebugAarMetadata” when running our Android Studio application

Tiempo de lectura: < 1 minuto Reading Time: < 1 minute Good morning everyone, In this tutorial, I’m going to explain how to solve the following error that occurs whenever we try to run our application. Initially, it is a problem with the Android dependencies. In some cases, simply changing the SDK version in the build.gradle file from 29 to 30 ... Read more

Creating a Screen with React Native

Creating a Screen with React Native

Tiempo de lectura: 2 minutos Reading Time: 2 minutes Screens in React Native function as standalone objects constructed with various components. In this example, I will show you how to create a Screen. First, create a screens folder where we will place the screens. Inside this folder, create a .js file called Login.js. Inside the Login.js file, we will have … Read more

How to Remove a User from a Group, Delete a User and Group in Linux (Ubuntu) from the Terminal Using Commands

How to Remove a User from a Group, Delete a User and Group in Linux (Ubuntu) from the Terminal Using Commands

Tiempo de lectura: 2 minutos Reading Time: 2 minutes According to the previous posts, we have created a user and a group to which we have added the user. You can see it in the following links: How to create a user with a home directory How to create a group and add users to it First, we will remove … Read more

Navigating Between Screens with React Native

Navigating Between Screens with React Native

Tiempo de lectura: 3 minutos Reading Time: 3 minutes In React Native, each screen is a stackable object that is added to the top of the stack. This means that if we open a screen and then close it, the screen that appears is the previously opened screen. To manage screens, we will use the react-navigation plugin (https://reactnative.dev/docs/navigation). First, we … Read more

Creating a Component in React Native

Creating a Component in React Native

Tiempo de lectura: 3 minutos Reading time: 3 minutes React Native works with components. What does this mean? It means that each element represents an object with its view, properties, and methods. An object is a black box where you input an entry and get an output, regardless of its internal contents. I’m going to explain how to create a … Read more

How to Create a Group and Add Users in Linux (Ubuntu) Using Terminal Commands

How to Create a Group and Add Users in Linux (Ubuntu) Using Terminal Commands

Tiempo de lectura: 2 minutos Reading time: 2 minutes Photo by John Tekeridis on Pexel We are going to create a group called grupoDevCodeLight. To do this, we will use groupadd as shown below: sudo groupadd grupoDevCodeLight If prompted, enter the administrator (root) password. Now, we will verify that the group has been created successfully using the following command: sudo … Read more

Create a Free 200GB Virtual Machine (VPS) Server with 4 CPUs and 32GB RAM using Oracle Cloud Always Free

Create a Free 200GB Virtual Machine (VPS) Server with 4 CPUs and 32GB RAM using Oracle Cloud Always Free

Tiempo de lectura: 3 minutos Reading Time: 3 minutes The first thing we need to do is create an account on Oracle Cloud as indicated in this post. Once created, go to Launch Resources and click on Create a VM instance. Now fill in the fields for your instance: Enter the name: Choose the image, I recommend Ubuntu 18. Click … Read more