Introduction In Go, a build tag is an identifier added to a piece of code that determines when the file should be included in a package during the build process. Why Go build tags? Go does not have a preprocessor, a macro system, or a #define declaration to control the inclusion of platform-specific code. So … Continue reading Let’s build tags in go!!
blog
Server side sorting and pagination using react-query and react-bootstrap-table-next (best practice)
In this blog, I will cover server side sorting and pagination using react-query and react-bootstrap-table-next. Generally, I prefer to use useQuery to get the data from the server, React Query manages query caching based on query keys. Query keys can be as simple as a string, or as complex as an array of many strings and nested objects. … Continue reading Server side sorting and pagination using react-query and react-bootstrap-table-next (best practice)
Introduction to Cypress
‘Cypress can test anything that runs in a browser’ Cypress supports faster End-to End(E2E) testing. Cypress gives devs access to all of the browser environments in which the site/app runs. What is End to End Testing? End to end testing is one of the testings in which the entire flow of the application is tested. … Continue reading Introduction to Cypress
