0.0.2 ā€¢ Published 3 years ago

react-irc v0.0.2

Weekly downloads
15
License
-
Repository
github
Last release
3 years ago

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.

0.0.2

3 years ago

0.0.1

3 years ago

5.7.0

3 years ago