Code Monkey home page Code Monkey logo

then-jsonp's Introduction

then-jsonp

Easy jsonp client for browser and node.js

Build Status Dependency Status NPM version

Sauce Test Status

Installation

npm install then-jsonp

Usage

var request = require('then-jsonp');

// with promises
var result = request('GET', 'http://example.com/foo/bar');
result.done(function (res) {
  console.dir(res);
});

// with callbacks
request('GET', 'http://example.com/foo/bar', function (err, res) {
  if (err) throw err;
  console.dir(res);
});

Method:

If this is anything other than 'GET' it gets added to the querystring as method=METHOD. The actual request is always a GET request. In the browser it's added as a <script> tag, on the server it uses then-request then evalutates the result in a vm.

URL:

The url to request.

Options:

  • qs - an object containing querystring values to be appended to the uri.
  • json - an object containing values to be merged into qs.
  • callbackName - The name of the callback to use, by default it will auto generate a new callback for each request of the form then_jsonp_{n}.
  • callbackParameter - The name to use to put the parameter in the querysting. Defaults to callback. Set it to false to not include the parameter at all.
  • methodParameter - The parameter to add the method, when the method is not GET.
  • skipJsonpOnServer - set this to true to use then-request instead of then-jsonp when running server side.

License

MIT

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.