An open API service indexing awesome lists of open source software.

https://github.com/anon767/nodeircbot


https://github.com/anon767/nodeircbot

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

          

C ircbot binding for NodeJS based upon:

https://github.com/Themaister/simple-irc-bot

# Install
npm i nodeircbot

# Usage
```
const ircbot = require("nodeircbot");
ircbot.start("irc.thecout.com", "#test", "6667", "testbot",(nick,msg) =>{
ircbot.send(nick +" wrote " + msg);

};
```