`getArticles()`
Writing about software engineering, React Native, and the tools I use.
Caching Layer with Mongoose Using Prototype
A Clean and Generic Approach for Caching MongoDB Data Using Mongoose Prototype on Node Service/Application Continue reading on The Startup »...
Build Variants on Expo React Native App
Customizing Builds for Every Use Case (e.g., dev, staging, production) Continue reading on The Startup »...
Custom Plugins for Expo Application
Extend your expo applications beyond any limitations! Continue reading on The Startup »...
Simplifying State Management: Exploring Zustand as an Alternative to Context and Redux(maybe?)
One of the main benefits of using a state management library is it gives us more control over state management and allows us to rerender… Continue reading on The Startup »...
Clean API Call With React Hooks
Make API calls more consistent throughout the whole application with concise, clean, and reusable code Continue reading on Better Programming »...
The Mindset to Deal With Rejection From the Company You Admire
“Fall down seven times, get up eight.” — Japanese Proverb Continue reading on Better Programming »...
Prototypical Inheritance in Javascript
In Javascript we don’t have classes, rather we only have objects. So if we want to implement inheritance with objects we can get the help… Continue reading on The Startup »...
Property Descriptor in Javascript
Have you ever heard the term Property Descriptor during the time you have been working with javascript? To be a better javascript… Continue reading on The Startup »...
Middleware in Express Applications
It’s not nearly as complicated as it sounds Continue reading on Better Programming »...
Composition or Inheritance, Which One Do You Prefer?
Inheritance is a great principle in object oriented programming where we can reuse code. But we have to be careful when using it because… Continue reading on The Startup »...