30eef7d036 | ||
---|---|---|
.. | ||
.npmignore | ||
History.md | ||
Readme.md | ||
component.json | ||
index.js | ||
package.json |
Readme.md
jsonp
A simple JSONP implementation.
Installation
Install for node.js or browserify using npm
:
$ npm install jsonp
Install for component(1) using component
:
$ component install LearnBoost/jsonp
API
jsonp(url, opts, fn)
url
(String
) url to fetchopts
(Object
), optionalparam
(String
) name of the query string parameter to specify the callback (defaults tocallback
)timeout
(Number
) how long after a timeout error is emitted.0
to disable (defaults to60000
)
fn
callback
The callback is called with err, data
parameters.
If it times out, the err
will be an Error
object whose message
is
Timeout
.
License
MIT