JSPM

instagram-save-client

0.1.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 12
  • Score
    100M100P100Q38829F
  • License MIT

Download images/videos from Instagram at client side

Package Exports

  • instagram-save-client
  • instagram-save-client/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (instagram-save-client) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Build Status

Node JS Instagram downloader

Download Instagram images and videos (not api required)

It's async/await lib

Whenever you download a video, the preview will also be downloaded

Install

npm i @juliendu11/instagram-downloader

How to use ?

const instagram_download = require ('@juliendu11/instagram-downloader');

(async () => {
const value = await instagram_download.downloadMedia('[MEDIA]', '[PATH_TO_SAVE]')
console.log(value)
})();

Example:

const instagram_download = require ('@juliendu11/instagram-downloader');

(async () => {
const value = await instagram_download.downloadMedia('https://www.instagram.com/p/B_SgH6MHc2s/', './')
console.log(value)
})();

Dependencies