Fix bin/publish: use correct .env path for rspade_system Fix bin/publish script: prevent grep exit code 1 from terminating script 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
23 lines
373 B
Markdown
Executable File
23 lines
373 B
Markdown
Executable File
# https-browserify
|
|
|
|
https module compatability for browserify
|
|
|
|
# example
|
|
|
|
``` js
|
|
var https = require('https-browserify')
|
|
var r = https.request('https://github.com')
|
|
r.on('request', function (res) {
|
|
console.log(res)
|
|
})
|
|
```
|
|
|
|
# methods
|
|
|
|
The API is the same as the client portion of the
|
|
[node core https module](http://nodejs.org/docs/latest/api/https.html).
|
|
|
|
# license
|
|
|
|
MIT
|