NINarayanan Iyerinnarayananiyer.hashnode.dev·Jul 20, 2024 · 4 min readModularising React appsIntroduction: React being a library doesn't provide a concrete structure to handle and modularise your code as done by other frameworks. Even though this gives flexibility to the developers to handle and modularise their code as per requirement, this...00
NINarayanan Iyerinnarayananiyer.hashnode.dev·Mar 11, 2023 · 3 min readUnderstanding database migrationMigration of the database is a crucial task involved in big tech firms. Although cloud providers have made the migration and replication of databases easy through automation, it is quite important to understand the migration tasks and how it works. I...00
NINarayanan Iyerinnarayananiyer.hashnode.dev·Aug 28, 2022 · 5 min readReact: Importance of Keys !There is this warning which I always used to get while I dealt with rendering lists to the webpage. We as a developer always tend to ignore the warnings as long as the application works properly. Likewise, I constantly ignored this warning during m...00
NINarayanan Iyerinnarayananiyer.hashnode.dev·Aug 10, 2022 · 5 min readJson Web Token (JWT) : Stateless AuthenticationThe development of stateless applications help in high scalability and load distribution. The intent of the REST api is stateless application development, so that the request can be routed anywhere thereby handling the heavy load. Let's look at the r...00
NINarayanan Iyerinnarayananiyer.hashnode.dev·Feb 19, 2022 · 3 min readState manipulating in ReactIntroduction: In large scale web applications modifying and maintaining the state of application in a cleaner way becomes very important. Even though we have many state management libraries like Redux that helps in maintaining and managing our states...00