React Native fork of node-irc
You can access more detailed documentation for this module at Read the Docs
The easiest way to get it is via npm:
npm install react-native-irc
This library provides basic IRC client functionality. In the simplest case you can connect to an IRC server like so:
var irc = require('react-native-irc');
var client = new irc.Client('irc.yourserver.com', 'myNick', {
channels: ['#channel'],
});Refer to node-irc for more usage instructions.