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
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-downloaderHow 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)
})();