Mukul Latiyan has Published 474 Articles

Augmented Reality (AR) Web Development with JavaScript and AR.js

Mukul Latiyan

Mukul Latiyan

Updated on 24-Jul-2023 15:04:05

1K+ Views

Augmented Reality (AR) is a technology that overlays digital information and virtual objects onto the real world. It has gained significant popularity in recent years, thanks to advancements in mobile devices and web technologies. In this article, we will explore the basics of AR web development using JavaScript and AR.js, ... Read More

Advanced Techniques for Debugging JavaScript Applications

Mukul Latiyan

Mukul Latiyan

Updated on 24-Jul-2023 15:02:35

120 Views

Debugging is an essential skill for every JavaScript developer. It helps identify and fix errors, optimise performance, and improve the overall quality of code. While basic debugging techniques like console logging are widely used, advanced techniques can greatly enhance your debugging capabilities. In this article, we will explore some advanced ... Read More

Advanced JavaScript Tooling: Webpack, Babel, and ESLint

Mukul Latiyan

Mukul Latiyan

Updated on 24-Jul-2023 14:41:53

215 Views

In today's rapidly evolving web development landscape, JavaScript has emerged as the backbone for building interactive and dynamic web applications. As JavaScript applications grow in complexity, developers face the challenge of managing and optimising their code effectively. This is where advanced JavaScript tooling comes into play. In this article, we ... Read More

Advanced JavaScript Patterns: Singleton, Decorator, and Proxy

Mukul Latiyan

Mukul Latiyan

Updated on 24-Jul-2023 14:40:28

118 Views

JavaScript is a versatile programming language that allows developers to create dynamic and interactive web applications. With its vast array of features and flexibility, JavaScript enables the implementation of various design patterns to solve complex problems efficiently. In this article, we will explore three advanced JavaScript patterns: Singleton, Decorator, and ... Read More

Advanced JavaScript Animation Techniques using CSS and JavaScript Libraries

Mukul Latiyan

Mukul Latiyan

Updated on 24-Jul-2023 14:38:32

234 Views

As web development continues to evolve, creating engaging and interactive user experiences has become an essential part of modern web applications. From subtle micro-interactions to complex visual effects, animations play a crucial role in capturing the attention of users and conveying information in a dynamic and visually appealing manner. JavaScript, ... Read More

Advanced Functional Reactive Programming (FRP) with JavaScript and RxJS

Mukul Latiyan

Mukul Latiyan

Updated on 24-Jul-2023 14:35:56

345 Views

Functional Reactive Programming (FRP) is a powerful paradigm that combines functional programming concepts with reactive programming. By leveraging FRP, developers can build highly responsive and scalable applications by modeling the flow of data and events as streams of values. JavaScript, being a widely used language for web development, can benefit ... Read More

Adding a Carousel to Your Site with Slick.js

Mukul Latiyan

Mukul Latiyan

Updated on 26-Jun-2023 12:15:04

868 Views

In this tutorial, we will demonstrate how you can use Slick.js to work with carousels and then add them to your websites. We will start with creating a simple carousel of images with the basic scroll being available to us and then slowly we will make some ... Read More

Working with Excel Files using Excel.js

Mukul Latiyan

Mukul Latiyan

Updated on 22-Jun-2023 17:26:03

3K+ Views

In order to work with the Excel.js, you need to first install the package as a dependency in your project. To install Excel.js in your project, you need to run the following command − npm install exceljs Once you run the above command, Excel.js will be installed as a ... Read More

How to Scrape a Website using Puppeteer.js?

Mukul Latiyan

Mukul Latiyan

Updated on 22-Jun-2023 13:32:43

239 Views

Web scraping is one of the best ways in which one can automate the process of data collection from the web. Normally we refer to a web scraper as a "crawler" who simply surfs the web and then gives us the scraped data from the pages that we selected. There ... Read More

How to Bundle up JavaScript Files using Rollup.js?

Mukul Latiyan

Mukul Latiyan

Updated on 22-Jun-2023 13:27:54

419 Views

In this tutorial, we will understand how to use rollup.js to bundle JavaScript files. Before we do that, the first step is to get familiar with the JavaScript module bundler called Rollup, which compiles the files of multiple sources into a single bundle. Rollup is similar to webpack and Browserify. ... Read More

Advertisements