← Back to Blog Tag: javascript
15 posts
- Bun vs Node.js: Is It Time to Switch in 2026? 2/23/2026 Bun has been making noise since it launched, promising faster startup times, built-in TypeScript support, and a batteries-included runtime. But is it actually ready to replace Node.js for real projects in 2026? I ran the benchmarks, migrated a side project, and here is what I found...
- Lynx vs React Native vs Flutter: TikTok’s New Framework in Perspective 3/17/2025 Cross-platform mobile development in 2025 has a new contender. ByteDance (TikTok’s parent company) recently open-sourced Lynx, joining Meta’s React Native and Google’s Flutter as frameworks for building iOS and Android apps from one codebase (Cross-P...
- How to Build a Referral Program with Node.js 3/4/2025 A referral program is a great way to acquire new users and retain existing ones by encouraging them to share your service. In this article, we will walk through building a simple referral system using Node.js, Express, and MongoDB. Prerequisites Befo...
- How to Create a Discord Bot 2/24/2025 Discord bots are a great way to automate tasks, moderate servers, and enhance user engagement. Whether you want a bot for moderation, games, music, or other utilities, creating a bot is simpler than it may seem. This guide will walk you through the s...
- A Comprehensive Introduction to Vue.js 2/18/2025 What is Vue.js? Vue.js is a progressive JavaScript framework used for building user interfaces and single-page applications (SPAs). It was created by Evan You and first released in 2014. Vue is known for its simplicity, flexibility, and ease of integ...
- A Deep Dive into React 19: New Features, Improvements, and Best Practices 1/6/2025 React 19, released in December 2024, marks a significant step forward in modern web development. Packed with innovative features, React 19 is designed to make web applications faster, easier to maintain, and more powerful. This article explores the m...
- Why JavaScript Is My One and Only: A Senior Developer’s Perspective 12/16/2023 Hello everyone! Today I want to share with you the answer to the never-ending question Why do I work with JavaScript? As a senior software developer with years of experience in the ever-evolving landscape of programming languages, one language stands...
- I Tried Zustand… and It’s Awesome! 6/7/2023 Hi, guys! A few days ago, I started rewriting the apps from my portfolio. For now, I have only rewritten one, but the others will follow soon. You might wonder why I’m doing that. Well, there are a couple of reasons. The first reason is that I love t...
- Solid.js: A Powerful and Reactive JavaScript Library for Building Efficient Web Applications 4/15/2023 Introduction Web development has seen an incredible evolution over the years, with an abundance of libraries and frameworks emerging to improve the developer experience and optimize performance. One such library that has been gaining popularity recen...
- Harnessing the Power of TypeScript: Top Utility Functions You Need to Know 4/14/2023 TypeScript, the popular open-source programming language, has become a crucial tool in modern web development. As a superset of JavaScript, TypeScript brings powerful static type checking and expressive types, leading to cleaner, more maintainable, a...
- What is Ember.JS 4/10/2023 Ember.js is a popular open-source JavaScript framework used to build scalable and maintainable web applications. Developed by Yehuda Katz in 2011, Ember.js has become a popular choice among developers due to its powerful features and simplicity in cr...
- What is Backbone.JS 4/9/2023 Backbone.js: A Lightweight and Flexible JavaScript Framework Backbone.js is a popular open-source JavaScript framework that provides structure to web applications by offering models, collections, views, and events. It is a lightweight framework that ...
- What is Mustache JS? 4/3/2023 If you’re a developer looking for a simple and efficient way to manage templates in your JavaScript application, then Mustache JS might be the right tool for you. Mustache JS is a popular templating engine that allows you to render HTML templates usi...
- What is jQuery? 3/15/2023 jQuery is a popular JavaScript library that simplifies web development by allowing developers to easily manipulate HTML elements and events. It was created in 2006 by John Resig and has since become one of the most widely used JavaScript libraries on...
- What I learned from building a chat project with sockets.io and React 8/24/2022 A few days ago I’ve built a React application with socket.io. It’s a chat app. *Sidenote: The repo and youtube video will be at the down of the article. Now, when you’ll see it you may ask a few questions like, “why didn’t use any DB or firebase?” or...