instagramdp
v1.0.2
Published
A NPM Package To Download Instagram Profile Pictures
Downloads
4
Readme
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))