🤖 Instagram comment generator robot
Did you like the project? Please, considerate a donation to help improve!
✨
Important! Install nodejs first in your machine: Download nodejs
Create an file index.js
, run npm init
on the terminal and this is the content of the index.js
:
#!/usr/bin/env node
import "dotenv/config";
import { CommentService } from 'instabot-core';
const { IG_LINK, PHRASE_AUTHOR, IG_USERNAME, IG_PASSWORD } = process.env;
const commentService = new CommentService({
loginInstagram: IG_USERNAME,
passwordInstagram: IG_PASSWORD,
puppeteer_options: {
headless: true,
},
});
function* commentForever() {
yield commentService.execute({
link: IG_LINK,
author: PHRASE_AUTHOR,
});
}
commentForever().next();
Install the dependency:
npm i instabot-core
or
yarn add instabot-core
Now run the command:
node index.js
Clone this repository:
git clone https://github.com/hebertcisco/instabot-core
cd instabot-core && npm i
Contributions, issues and feature requests are welcome!
Feel free to check issues page.
Give a ⭐️ if this project helped you!
Or buy me a coffee 🙌🏾
BTC WALLET: 3P4oVEdSP8CPdFZZwS2dboRyLFXLSTE7Gq
Copyright © 2022 Hebert F Barros.
This project is MIT licensed.