https://github.com/anon767/nodeircbot
https://github.com/anon767/nodeircbot
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/anon767/nodeircbot
- Owner: anon767
- Created: 2019-01-08T18:08:55.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-01-15T15:22:52.000Z (almost 7 years ago)
- Last Synced: 2025-03-11T20:38:45.944Z (10 months ago)
- Language: C
- Size: 14.6 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
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);
};
```