Skip to content
This repository has been archived by the owner on Jul 8, 2019. It is now read-only.

brandonjpierce/b-jsonp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

b-jsonp

npm Build Status Code Climate

A simple, efficient, and small jsonp library for the browser.

Install

With NPM:

npm install b-jsonp --save

Manual Install:

<script src="/path/to/b-jsonp.min.js"></script>

Usage

All data passed to b-jsonp will automatically be URL encoded. b-jsonp is also aware if a URL currently contains a ? and will adjust the request URL accordingly.

Simple request
jsonp('http://your/url', function(err, response) {
  // your code here
});
Passing data
jsonp('http://your/url', { foo: 'bar' }, function(err, response) {
  // your code here
});
Additional options
jsonp('http://your/url', { foo: 'bar' }, { name: 'cb' }, function(err, response) {
  // your code here
});

// OR WITH NO DATA
//
jsonp('http://your/url', null, { name: 'cb' }, function(err, response) {
  // your code here
});

Available options

Option Type Default Description
name String null Name of function to be called by the jsonp callback. By default one is generated for you.
param String 'callback' Name of callback parameter in URL
prefix String '__jsonp' Prefix used when a callback name is generated automatically
timeout Number 15000 Time to wait in milliseconds until the jsonp request is canceled

License

MIT

About

[Unmaintained] Simple, efficient, and tiny jsonp library for the browser.

Resources

Stars

Watchers

Forks

Packages

No packages published