Next.js, The Docs Part 1: An Introduction
September 26, 2024
Likes: 1
A series of articles tailored to full-stack developers who want to harness the full power of Next.js.
Understanding useRef in React
September 24, 2024
Likes: 3
A Guide to Efficient State and DOM Management.
Optimizing React Components with useCallback
September 23, 2024
Likes: 2
In React, callbacks are commonly passed as props to child components, which can sometimes cause unnecessary re-renders and degrade performance....
Managing Form Submissions in a Next.js Project with useFormState and useFormStatus
September 12, 2024
Likes: 2
Handling form submissions in a modern web application often involves providing feedback to the user, letting them know when their...
Implementing a Scroll-to-Top Feature in a Next.js 14 App
August 15, 2024
Likes: 1
Providing a seamless user experience when navigating between pages by ensuring scroll is reset to the top of the page....
What is React vs Vanilla Javascript?
August 15, 2024
Likes: 1
React is a JavaScript library that helps you build user interfaces, especially for web apps, more easily and efficiently.
Speech Synthesis Markup Language for Google Text-to-Speech
August 11, 2024
Likes: 0
Google's Text-to-Speech (TTS) service supports a variety of SSML (Speech Synthesis Markup Language) tags that allow you to control the...
How to Download Images from Google Images Using Puppeteer and Node.js
July 31, 2024
Likes: 1
Explore how to create a script that automates the process of downloading images from Google Images using Puppeteer, Node.js, and...
How to Download Images in Node.js Using Axios and fs-extra
July 29, 2024
Likes: 1
Download an image from a specified URL and save it to a local file path using Node.js.
Converting Markdown to PDF with Puppeteer and Markdown-it
July 21, 2024
Likes: 1
We'll use the puppeteer-core library to generate the PDF and markdown-it to parse the Markdown content. Additionally, we'll add custom...