This script scrapes images from the feed of specified Instagram users using Puppeteer in Node.js. The script downloads the images and saves the image filenames in a JSON file along with the download date.
- Node.js (v12.0.0 or higher)
- npm (v6.0.0 or higher)
-
Clone this repository or download the script files.
-
Navigate to the directory containing the script.
-
Install the required dependencies by running:
npm install puppeteer
Create a config.json
file in the same directory as the script with the following structure:
{
"usernames": [
"username1",
"username2",
"username3"
]
}