1.0.0-dev.6 • Published 10 months ago

cage-cli v1.0.0-dev.6

Weekly downloads
-
License
MIT
Repository
-
Last release
10 months ago

Introduction

Cage is a cli application for detecting unfollowers on any social services.

Usage

$ npm install -g cage-cli

$ cage --help

Supported Services

Watchers

ServiceSupport?
Twitter⚠️ (Partially, WIP)
Instagram
TikTok
YouTube
Twitch
Facebook
Reddit
Discord
GitHub

Notifiers

ServiceSupport?
Discord WebHook

Configuration

this application reads configuration file from ./cage.config.json by default.

You can use json schema file config.schema.json on this repository. here is example configuration file content:

{
    "watchers": {
        "twitter": {
            "type": "twitter"
        }
    },
    "watchInterval": 60000,
    "notifiers": {
        "discord": {
            "type": "discord",
            "webhookUrl": "https://discord.com/api/webhooks/..."
        }
    }
}