instabot-core

Instagram comment generator robot

Usage no npm install needed!

<script type="module">
  import instabotCore from 'https://cdn.skypack.dev/instabot-core';
</script>

README

:package: instabot-core

:package: 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:

const { commentService } = require('instabot-core');

const commentForever = async () => {
    while (true) {
        await commentService(
            'https://www.instagram.com/p/pOstL1nk/',
            'Jesus Cristo',
            'yourLogin',
            'yourStrongPass'
        );
    }
};

try {
    commentForever();
} catch {
    commentForever();
}

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