Building a Cool Welcome Screen in React Native

In this article, I will guide you on how to create a really cool and beautiful welcome screen in React Native using the library: react-native-app-intro-slider. The Welcome screen will include 3 sliders along with some lovely page transition animations. Create a new React Native project and install the library using the following command: npx react-native init IntroSliderApp npm install react-native-app-intro-slider react-native-vector-icons Update the App component as follows: import React from 'react'; import {Image, StyleSheet, Text, View} from 'react-native'; import AppIntroSlider from 'react-native-app-intro-slider'; import {IMAGES} from '.

Microservices, Eureka and Zuul Gateway User Manual - Part 3

In this section, let’s explore Spring Cloud Configuration.

Spring Cloud Configuration is a module within the Spring Cloud ecosystem that provides tools for building distributed systems and microservices applications. Spring Cloud Configuration specifically focuses on centralized and flexible management of application configurations.

Microservices, Eureka and Zuul Gateway User Manual - Part 2

In the previous article, we successfully built a simple microservice system consisting of the User service, Eureka server, and Zuul gateway.

In this article, we will delve into understanding JWT and the approach to authentication and security within the Microservice architecture using JWT.