This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

instabot-core
TypeScript icon, indicating that this package has built-in type declarations

1.1.40 • Public • Published

: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

Node.js build and publish package

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:

#!/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

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 🙌🏾

BTC WALLET: 3P4oVEdSP8CPdFZZwS2dboRyLFXLSTE7Gq

📝 License

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

Readme

Keywords

Package Sidebar

Install

npm i instabot-core

Weekly Downloads

47

Version

1.1.40

License

MIT

Unpacked Size

20.3 MB

Total Files

2510

Last publish

Collaborators

  • tecnobert