blog.devaman.devDaily Learnings19/May/2023 While using mini-css-extract-plugin with vuejs and webpack 5, I was getting problem related to CSS priority. Scoped Css/Scss was not getting higher priority than common css. To resolve this issue we had to use oneof rule. In resourceQuery...May 19, 2023·1 min read
blog.devaman.devMigrating your project to AWS IOT device sdk v2Hello everyone! I recently had the opportunity to work with AWS IoT to fetch real-time data. During the migration from Webpack 4 to Webpack 5, we encountered some issues with the aws-iot-device-sdk. While building our project, we encountered errors r...May 19, 2023·3 min read
blog.devaman.devReactjs in Vuejs using Module Federation (inc Routing)Hey everyone , Webpack has released some new cool feature called module federation. Module Federation allows a JavaScript application to dynamically load code from another application and in the process, share dependencies. If an application consumi...Oct 30, 2021·4 min read
blog.devaman.devHow To Submit A Pull Request On Github ?In this post I will tell you about on how to submit a pull request to the organization on which you are thinking to contribute. Now lets gets started with the steps... 1) Step 1 : Fork the repo. 2) Step 2 : Clone the repository.Open the terminal and ...May 7, 2021·2 min read
blog.devaman.devPreparing for Frontend InterviewDebounce It is used to improved performance . Sometime a function is being called continuously . The Debounce technique allow us to "group" multiple sequential calls in a single one. For eg Suppose we have blog editor.We are editing the content of th...Mar 26, 2021·8 min read