How to download an image from URL in nodejs
Dec 8, 2021 · 1 min read · In this article, we'll learn that how can we download images from a remote URL. After downloading the image, we will encode it in base64 format. original post const { Buffer } = require("buffer"); const axios = require("axios"); let url = "https://re...
SBSaid and 1 more commented