When you are working on larger projects, it is good to write separate reusable code into a library. On iOS, CocoaPods is a great tool to handle app dependencies, and it also enables you to create your private library as a Cocoa Pod.CocoaPods is a tool for adding open-source code to your project. Creating a … Continue reading Why You Should Start Using Private Pods in Your iOS App Project
blog
How You Can Get The Most Performance Out of Node.js💁
Ok so let's start with introducing Node.js. Node.js enables us to run javascript outside the browser. It is based on the chrome V8 engine and under the hood it uses JS, C++ and C. Oh God! Are you guys still using C? 🙈 and although you may have heard that Node.js is single threaded and … Continue reading How You Can Get The Most Performance Out of Node.js💁
Is Recoil Going to be the New Redux in React?
Recoil is a new state management library for React that lets you manage global/sharable state in a Reactish way. What's great is that Recoil is being developed by the Facebook team. In this blog we'll take a look at the useRecoilState hook and how they have made it is so 'React'-ish? Let’s take a very simple … Continue reading Is Recoil Going to be the New Redux in React?
