InstagramDP - Instagram Profile Picture Package
Installation
$ npm install instagramdp
Usage
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))