Skip to main content

React Native Debugger Setup

· 9 min read
Full Stack Developer
Last updated on June 25, 2023

react native debuggers

React Native Debugger is a powerful tool that helps developers debug React Native applications more quickly. It provides a suite of impressive features, such as UI inspector, redux inspector, breakpoints and networking inspector. In this article, we are going to learn how to install and use the React Native Debugger, which will boost your development productivity by an order of magnitude. In layman’s terms, a Debugger is a tool used for debugging. If you are a developer of any programming background, you must have already come across a debugger in your life. React Native Debugger is a standalone debugger tool built using the Electron framework. You can easily integrate this debugger tool along with the Chrome Dev tool. This debugger tool is based on the remote debugger which is included in React Native out of the box. However, the React Native debugger packs a lot more features than the remote one.

AWS AppSync with React Native

· 14 min read
Full Stack Developer
Last updated on March 27, 2023

app sync

AWS Amplify is a framework that lets us develop a web or mobile application quickly. In this tutorial, we are going to continue to learn how to perform CRUD operations with the database by using GraphQL mutations. AWS Amplify has a complete toolchain wiring and managing APIs with GraphQL. The API we will be creating in this tutorial is a GraphQL API using AWS AppSync (a managed GraphQL service) and the database will be Amazon DynamoDB (a NoSQL database).

How to Use Animated View in React Native

· 6 min read
Full Stack Developer
Last updated on February 17, 2023

animated-view-react-native

Animated View is a powerful way to animate components in React Native. It can be used to create smooth and fluid animations which can be used to enhance the user experience. In this tutorial, we will learn how to use Animated View in React Native to create 5 different animation examples.

Best React Native Newsletters

· 8 min read
Full Stack Developer
Last updated on January 19, 2023

best react native newsletters

As a developer, your days are extremely busy. As a React Native developer, even more so. With the technology evolving at a rapid pace, staying up to date with the latest React Native & Expo releases is always a struggle. That’s why I decided to curate the best React Native Newsletters, that help me stay on top of my mobile developer game.

Unit Testing in React Native

· 6 min read
Full Stack Developer
Last updated on January 12, 2023

react native unit tests

Unit tests are a vital part of any software development project and React Native is no exception. Unit tests are small, isolated pieces of code that test a single component or feature of an app. Writing unit tests for React Native apps can help developers catch bugs early, ensure code quality, and make debugging easier.