react-jsonrpc-client

1.0.0 • Public • Published

react-jsonrpc-client

A JSON Rpc client for React that uses promises to call to JSON Rpc APIs.

Usage Example

import JsonRpcClient from '/path/to/jsonrpcclient'
class TutoringCalendar extends Component {
  componentDidMount() {
    var api = new JsonRpcClient({
      endpoint: 'https://url.to/api',
      headers: {
        'X-Token': this.state.token
      }
    })
    api.request(
      METHOD_NAME,
      PARAM_1,
      PARAM_2,
      PARAM_3
    ).then(function(response) {
        this.setState({apiResponse: response})
      }.bind(this)) // End .then()
  } // End componentDidMount
} // End class

Package Sidebar

Install

npm i react-jsonrpc-client

Weekly Downloads

38

Version

1.0.0

License

ISC

Unpacked Size

4.44 kB

Total Files

3

Last publish

Collaborators

  • evanlihou