React Hook Form vs. FormikThis article is about my comparison of the two form libraries Formik and React Hook Form. At my work all our forms are built with Formik…May 27, 20241May 27, 20241
What is a breaking change to an API?When backend is updating endpoints, it can be a breaking change and can break the running app using this endpoint.May 27, 2024May 27, 2024
Having a ~tilde in your package jsonWhere is the tilde key? I always had problems finding the tilde key on the keyboard. Just click ~(alt + n) and there it is.May 27, 2024May 27, 2024
Change detection in AngularWhen you change any of your models, Angular detects the changes and immediately updates the views. This is change detection in Angular. The…Mar 23, 2023Mar 23, 2023
Lifecycle methods in AngularA component instance has a lifecycle that starts when Angular instantiates the component class and renders the component view along with…Mar 23, 2023Mar 23, 2023
Observables in AngularObservables provide support for passing messages between parts of your application. They are used frequently in Angular and are a technique…Mar 23, 2023Mar 23, 2023
Components vs. Modules in AngularComponents control views (html). They also communicate with other components and services to bring functionality to your app.Mar 23, 2023Mar 23, 2023
package-lock.jsonpackage-lock.json is automatically generated where npm modifies either the node_modules tree, or the package.json.Feb 19, 2023Feb 19, 2023
git merge vs. git rebaseGit Merge and Git Rebase commands solves the same problem.Jan 1, 2023Jan 1, 2023
MVC (Model-View-Controller)MVC (Model-View-Controller) is a pattern in software design commonly used to implement user interfaces, data, and controlling logic. It…Aug 19, 2022Aug 19, 2022
Comparing React, Vue & AngularOverview of the differences and advantages and how to choose which one to useAug 19, 2022Aug 19, 2022
Evolution of frontend development1990–1995: HTML, CSS and JavaScript are inventedAug 19, 2022Aug 19, 2022
imports with ReactThere are three types of most import commonly used imports.Jul 22, 2022Jul 22, 2022
Jest with ReactAll Jest related dependencies come installed as a part of the React project created using the npx command npx create-react-app <your app…Oct 7, 2021Oct 7, 2021