instagramdp
v1.0.2
Published
A NPM Package To Download Instagram Profile Pictures
Readme
Installation
> npm install instagramdpUsage
Import
const instagramdp = require("instagramdp");Using Async/Await!.
async function getProfilePicture() {
const response = await instagramdp.getDP("codewithaadi")
console.log(response);
}
getProfilePicture()Using Promises!.
instagramdp.getDP("codewithaadi").then(response => console.log(response))