UNPKG

373 BMarkdownView Raw
1# https-browserify
2
3https module compatability for browserify
4
5# example
6
7``` js
8var https = require('https-browserify')
9var r = https.request('https://github.com')
10r.on('request', function (res) {
11 console.log(res)
12})
13```
14
15# methods
16
17The API is the same as the client portion of the
18[node core https module](http://nodejs.org/docs/latest/api/https.html).
19
20# license
21
22MIT