# jsonp **Repository Path**: wu_jianyong/jsonp ## Basic Information - **Project Name**: jsonp - **Description**: A simple JSONP implementation - **Primary Language**: JavaScript - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-04-07 - **Last Updated**: 2025-03-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # jsonp A simple JSONP implementation. [![saucelabs][saucelabs-image]][saucelabs-url] ## Installation Install for node.js or browserify using `npm`: ``` bash $ npm install jsonp ``` Install for component(1) using `component`: ``` bash $ component install LearnBoost/jsonp ``` Install for browser using `bower`: ``` bash $ bower install jsonp ``` ## API ### jsonp(url, opts, fn) - `url` (`String`) url to fetch - `opts` (`Object`), optional - `param` (`String`) name of the query string parameter to specify the callback (defaults to `callback`) - `timeout` (`Number`) how long after a timeout error is emitted. `0` to disable (defaults to `60000`) - `prefix` (`String`) prefix for the global callback functions that handle jsonp responses (defaults to `__jp`) - `name` (`String`) name of the global callback functions that handle jsonp responses (defaults to `prefix` + incremented counter) - `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`. Returns a function that, when called, will cancel the in-progress jsonp request (`fn` won't be called). ## License MIT [saucelabs-image]: https://saucelabs.com/browser-matrix/jsonp.svg [saucelabs-url]: https://saucelabs.com/u/jsonp