chrome-https

2.0.1 • Public • Published

chrome-https

This is a fork of https://www.npmjs.com/package/stream-http

There are two reasons for the fork

  1. A call to https.request with an options parameter without a scheme but with a port throws an error in chrome-apps

  2. The default https-browserify inherits the all the calls from which ever http is required but with the scheme change. This breaks in chromiumify asthe full http stack guards against using the incorrect protocol.

So to use the https module from node.js in chrome apps the stream-http module has been taken, the scheme update applied, and published as chome-https.

When you require('https') in a chromiumify app, this module will be loaded.

example

var https = require('https');
 
var options = {
  hostname: 'encrypted.google.com',
  port: 443,
  path: '/',
  method: 'GET'
};
 
var req = https.request(options, function(res) {
  console.log("statusCode: ", res.statusCode);
  console.log("headers: ", res.headers);
 
  res.on('data', function(d) {
    process.stdout.write(d);
  });
});
req.end();
 
req.on('error', function(e) {
  console.error(e);
});

http methods

var https = require('https');

var req = https.request(opts, cb)

where opts are:

  • opts.method='GET' - http method verb
  • opts.path - path string, example: '/foo/bar?baz=555'
  • opts.headers={} - as an object mapping key names to string or Array values
  • opts.host=window.location.host - http host
  • opts.port=window.location.port - http port
  • opts.responseType - response type to set on the underlying xhr object

The callback will be called with the response object.

var req = https.get(options, cb)

A shortcut for

options.method = 'GET';
var req = https.request(options, cb);
req.end();

request methods

req.setHeader(key, value)

Set an http header.

req.getHeader(key)

Get an http header.

req.removeHeader(key)

Remove an http header.

req.write(data)

Write some data to the request body.

If only 1 piece of data is written, data can be a FormData, Blob, or ArrayBuffer instance. Otherwise, data should be a string or a buffer.

req.end(data)

Close and send the request body, optionally with additional data to append.

response methods

res.getHeader(key)

Return an http header, if set. key is case-insensitive.

response attributes

  • res.statusCode, the numeric http response code
  • res.headers, an object with all lowercase keys

in order to map "chrome-https" over require('https') in your browserified source.

install

With npm do:

npm install chrome-https

license

MIT

Dependencies (6)

Dev Dependencies (2)

Package Sidebar

Install

npm i chrome-https

Weekly Downloads

4

Version

2.0.1

License

MIT/X11

Last publish

Collaborators

  • no9