slackminerdeprecated

A slack bot to monitor the status of minecraft servers

Usage no npm install needed!

<script type="module">
  import slackminer from 'https://cdn.skypack.dev/slackminer';
</script>

README

How to use


Using Slackminer is simple.
First of all, you need to create a new [Integration]("https://api.slack.com/bot-users"), with an incoming webhook. Make sure to keep track of this webhook URL because you will need it later.
Also, create a new Bot Integration with the name whoson, and copy it's API key

OK! I have done all that! Now what do I do?

Implementing Slackminer is the simplest step of it all.
Simply run:
```Bash npm install slackminer ``` And then in your code:

```Javascript var Slackminer = require("slackminer"); var bot = new Slackminer(IP_OF_SERVER,BOT_API_TOKEN,INCOMING_WEBHOOK,CHANNELS_AFFECTED); bot.run(); ```