1.0.4 • Published 4 years ago

nistagram v1.0.4

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

Installation

npm i nistagram

Usage

//ES6+

import Nistagram from 'nistagram';
let ig = new Nistagram();

(async() => {
  let session = await ig.login('username', 'password')
  let x = await session.getTimeLineFeed();
  console.log(x)
})()

//Traditional JavaScript

var Nistagram = require('nistagram');
const ig = new Nistagram.default();

(async() => {
  let session = await ig.login('username', 'password')
  let x = await session.getTimeLineFeed();
  console.log(x)
})()

Author

@ervan0707