httpify

3.0.0 • Public • Published

httpify

Http in the browser and Node.js with no hassle.

The beauty of this module is that it handles all browserify configurations for which module to load for server or browser.

Install

npm install httpify --save

Usage

When using with Browserify, this module returns a shimmed version of the xhr module. When using with Node, it returns the raw request module.

var request = require('httpify')
 
var req = request({
  url: 'http://somewhere.com',
  method: 'GET',
  type: 'json'
}, function (err, response, body) {
  // Do stuff
})

See the documentation for xhr and request for a complete list of options.

TODO

  • add support for Angular
  • add more robust Browserify bundle/transform support

Package Sidebar

Install

npm i httpify

Weekly Downloads

350

Version

3.0.0

License

MIT

Last publish

Collaborators

  • scottcorgan