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

https://github.com/fjc0k/ok-jsonp

jsonp
https://github.com/fjc0k/ok-jsonp

Last synced: 6 months ago
JSON representation

jsonp

Awesome Lists containing this project

README

          

# ok-jsonp
```shell
npm i ok-jsonp -S
```
```javascript
import jsonp from 'ok-jsonp';
jsonp(
'http://foo.bar/jsonp',
{
type: 1,
page: 2
},
'_callback'
).then(
res => console.log(res),
err => console.log(err)
);
```