instagram-saver

Robot that automatically save all images from instragram

Installation and Running

Requires Node v7.6 or above

  1. Clone the repo
$ git clone https://github.com/junggeehoon/instagram-saver
  1. Install dependencies
$ npm install
  1. Make img folder inside the project folder or you can use your own folder by setting ./img with a relative path to your desired location
const IMAGE_DIRECTORY = './img'
  1. In case of private instagram account, make config.js file inside the project folder like under:
const config = {
  email: 'YOUR_INSTAGRAM_EMAIL',
  password: 'YOUR_INSTAGRAM_PASSWORD'
}

module.exports = config;
  1. Run using node index.js