Habits that make the difference Photo by Danial Igdery on Unsplash Getting the job done is the most important thing in software development. But how do you separate yourself from others? Well, from my experience, I can Read Full
Tag: JavaScript
Everything You Need to Know About React Component Life Cycles
A component mounts when it’s created inside a constructor with its props and state initialized. This is when it’s first placed in the DOM — that is, when it’s rendered for the first time. In this phase, Read Full
Implementing AsyncStorage in React Native
Build smart asynchronous apps Photo by Ferenc Almasi on Unsplash. AsyncStorage is a very important piece when it comes to building React Native applications. You may ask, “What is AsyncStorage?” It is a way to store data Read Full
Generalist or Specialist? Which One Should You Strive To Be as a Web Developer?
The dilemma most developers face Photo by James Sutton on Unsplash Should you learn backend development? Should you learn frontend development? Are you more of a full-stack kind of person? In this article, I will dive deeper Read Full
Load Testing WebSockets With k6
Using a built-in WebSocket client to test the performance of your server Image by the author Building on top of my previous article on k6, the topic for this article is on load testing WebSocket. Unlike HTTP, Read Full
Building a Google Clone — Part 4: Deploying to Firebase
Completing the search results page and deploying to Firebase Photo by Christopher Gower on Unsplash. Do you want to take your developer skills to the next level or impress your future employer? Then build this Google Clone! Read Full
A Beginner’s Guide to Data Encryption With Node.js
Web development can’t survive without encryption Photo by the author. As web apps continue to gain access to large amounts of sensitive data that belongs to people, organizations, and even governments, the threat to data security is Read Full
Making Beautiful Charts With ChartJS
Easy and flexible JavaScript charts Photo by Luke Chesser on Unsplash Charts are everywhere. Infographics as ads, Medium statistics, YouTube stats, your workout statistics, and even your K/D ratio can be seen in charts. And if you’re Read Full
5 Principles for Writing Clean and Maintainable Vue.js Code
Write code that others will understand and love Photo by Joanna Kosinska on Unsplash There’s a lot of power in clean code. Clean code might not become better over time, the same way that a fine wine Read Full
5 Common JavaScript Memory Mistakes
Tips to avoid memory leaks in your web apps Photo by Possessed Photography on Unsplash. JavaScript doesn’t provide any memory management primitives. Instead, memory is managed by the JavaScript VM through a memory reclaim process. That process Read Full
3 Correct Ways To Overwrite Angular Material Styles
Create beautiful components for your web apps Photo by Gabe Rebra on Unsplash. In the initial stages of each project, every frontend developer always faces the question of whether or not to use the UI component library. Read Full
Bundle Up a JavaScript Project Using Rollup
A step-by-step guide for bundling JavaScript projects from the scratch Image credit: Author Rollup is a module bundler for JavaScript that compiles small pieces of code into something larger and more complex, such as a library or Read Full