Skip to content

bugbounted/instabot-core

Repository files navigation

:package: instabot-core

πŸ“¦ instabot-core

πŸ€– Instagram comment generator robot

Issues GitHub pull requests GitHub Downloads GitHub Total Downloads GitHub release

Report Bug Request Feature

Systems on which it has been tested.

Ubuntu Windows Alpine_Linux

Did you like the project? Please, considerate a donation to help improve!

✨

Getting started

Usage

Installation

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

Cloning the repo

Clone this repository: git clone https://github.com/hebertcisco/instabot-core

Open the directory and run the script line:

cd instabot-core && npm i

🀝 Contributing

Contributions, issues and feature requests are welcome!
Feel free to check issues page.

Show your support

Give a ⭐️ if this project helped you!

Or buy me a coffee πŸ™ŒπŸΎ

πŸ“ License

Copyright Β© 2022 Hebert F Barros.
This project is MIT licensed.