Skip to main content

8 posts tagged with "Debugging"

Articles about debugging techniques and tools

View All Tags

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.

Tips & Tricks to Get Familiar with a New Codebase Faster

· 7 min read
Full Stack Developer
Last updated on December 20, 2022

familiar codebase tricks

This article assumes you have just got your new job and you are finding it demanding to settle in and start working on your new team’s codebase. We discuss in this article some of the tricks that can help you familiarize with a new codebase faster. These tips and tricks are a summary after an intense research and consulting with some field developers in the industry. There’s no magic here, just practical and efficient steps in getting you familiar with a new codebase as fast as possible. This article will as well help you as a developer to maintain a sane codebase for the next developer that will take on your good work. Let’s jump right in Here are the five major trips to master a new codebase

React Native Hermes: Performance Optimization

· 5 min read
Full Stack Developer
Last updated on September 7, 2022

react native hermes

Hermes is a Javascript engine that is optimized for React Native and works for both Android and iOS. Hermes is an open source library that has been found to have potential upsides for performance in many apps such as improved start-up time, more efficient, hence reduced memory usage and a smaller app size. At the time of writing this Hermes still remains an opt-in feature and you have to make sure that the React Native version of your project is at least 0.60.4 otherwise you won’t be able to use this very resourceful library.

React Native Development Tools

· 10 min read
Full Stack Developer
Last updated on February 24, 2022

react native dev tools

React Native has gained a lot of popularity among mobile app developers within the last few years, and the tooling ecosystem has improved a lot as a result. In this article, we are listing the best React Native development tools that are indispensable to any React Native developer who wants to be as productive as possible in their development and debugging processes.

Optional Imports in React Native

· 2 min read
Full Stack Developer
Last updated on August 23, 2021

Optional imports support has been added recently in React Native.This feature requires no external library and is relatively easy to implement even with its enormous advantage to the overall code quality of your code. The major use-case of this feature is backwards compatibility which we will look right into next.

optional imports