├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── Procfile ├── README.md ├── cli.js ├── index.js ├── lib └── Profile.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | Procfile 3 | 4 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanuj101/instagram-api/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanuj101/instagram-api/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: node app.js 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanuj101/instagram-api/HEAD/README.md -------------------------------------------------------------------------------- /cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanuj101/instagram-api/HEAD/cli.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/Profile"); 2 | -------------------------------------------------------------------------------- /lib/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanuj101/instagram-api/HEAD/lib/Profile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanuj101/instagram-api/HEAD/package.json --------------------------------------------------------------------------------