README
react-irc
Handful of utilities you should keep in your toolbelt to handle IRC connectivity in React.
🚧 react-irc is under development 🚧
Examples
Contents
Features
States available:
- channels
- connections
- servers
- users
- errors
- (soon) messages
Actions available:
- connect
- disconnect
- join
- leave
- (soon) send message
Installation
$ npm i react-irc
Setup
// src/store/index.js
import { createStore, combineReducers } from 'redux'
import { reducer as irc } from 'react-irc';
const rootReducer = combineReducers({
// ... your other reducers here ...
irc,
});
const store = createStore(rootReducer);
export default store;
Contributions
PRs are more than welcome. If you're planning to contribute please make sure to read the contributing guide: CONTRIBUTING.md
Inspiration
Thanks to Martyn Smith for his awesome project Node IRC, which served me as inspiration for the react irc implementation.