You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

пре 3 година
12345678910111213141516171819202122
  1. # https-browserify
  2. https module compatability for browserify
  3. # example
  4. ``` js
  5. var https = require('https-browserify')
  6. var r = https.request('https://github.com')
  7. r.on('request', function (res) {
  8. console.log(res)
  9. })
  10. ```
  11. # methods
  12. The API is the same as the client portion of the
  13. [node core https module](http://nodejs.org/docs/latest/api/https.html).
  14. # license
  15. MIT