An open API service indexing awesome lists of open source software.

https://github.com/threepointone/react-superagent

universal ajax as a react component
https://github.com/threepointone/react-superagent

Last synced: 2 months ago
JSON representation

universal ajax as a react component

Awesome Lists containing this project

README

        

react-superagent
---

`npm install superagent react-superagent --save`

universal ajax as a component

```js
import {Ajax} from 'react-superagent';

...
{
({error, response, done}) => !done ?

loading...
:
loaded! {JSON.stringify(response)}

}
```

should work across node, browsers, react-native.