0.1.7 • Published 3 years ago

instaget v0.1.7

Weekly downloads
3
License
MIT
Repository
github
Last release
3 years ago

A tiny Node.js API to get data from Instagram

This is a tiny Node.js API that allows following operations on Instagram:

login to instagram via an instagram username and password
get basic profile information
search instagram accounts

Note: This library uses Chrome engine via Puppeteer

Installation

Via npm:

$ npm i instaget --save

Or yarn:

$ yarn add instaget

Usage

In a Javascript ES6 project:

import Instagram from "instaget";

const ig = new Instagram();

const username = "ig_user";
const password = "ig_pass";

// Login to instagram via an instagram username and password
await ig.login(username, password);

// Search on instagram accounts and get search results
const searchResults = await ig.search("john");
0.1.7

3 years ago

0.1.6

3 years ago

0.1.5

3 years ago

0.1.4

3 years ago

0.1.2

3 years ago

0.1.1

3 years ago

0.1.3

3 years ago

0.1.0

3 years ago