π€ 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
:
import { commentService } from 'instabot-core';
import * as dotenv from 'dotenv';
dotenv.config();
const { IG_LINK, PHRASE_AUTHOR, IG_USERNAME, IG_PASSWORD } = process.env;
function* commentForever() {
yield commentService({
link: IG_LINK,
author: PHRASE_AUTHOR,
loginInstagram: IG_USERNAME,
passwordInstagram: IG_PASSWORD,
});
}
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 ππΎ
Copyright Β© 2022 Hebert F Barros.
This project is MIT licensed.