├── .gitignore ├── LICENSE ├── README.md ├── config └── config.json ├── index.js ├── package.json └── src ├── pouchDB.js └── puppeteer.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glamdevhero/node-puppeteer-instagram-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glamdevhero/node-puppeteer-instagram-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glamdevhero/node-puppeteer-instagram-bot/HEAD/README.md -------------------------------------------------------------------------------- /config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glamdevhero/node-puppeteer-instagram-bot/HEAD/config/config.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glamdevhero/node-puppeteer-instagram-bot/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glamdevhero/node-puppeteer-instagram-bot/HEAD/package.json -------------------------------------------------------------------------------- /src/pouchDB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glamdevhero/node-puppeteer-instagram-bot/HEAD/src/pouchDB.js -------------------------------------------------------------------------------- /src/puppeteer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glamdevhero/node-puppeteer-instagram-bot/HEAD/src/puppeteer.js --------------------------------------------------------------------------------