Node.jsのhttp moduleはhttpリクエストしかできず、https moduleはhttpsリクエストしかできない
タイトルがすべてシリーズ
Node.jsには標準添付ライブラリとしてhttp moduleとhttps moduleがあるが、それぞれhttp/httpsリクエストしかできないようになっている http moduleでhttpsリクエストしようとしたり、https moduleでhttpリクエストしようとするとTypeErrorが発生する
code:node
❯ node
Welcome to Node.js v18.17.0.
Type ".help" for more information.
Uncaught:
at __node_internal_captureLargerStackTrace (node:internal/errors:496:5)
at new NodeError (node:internal/errors:405:5)
at new ClientRequest (node:_http_client:188:11)
at request (node:http:100:10)
at Object.get (node:http:111:15) {
code: 'ERR_INVALID_PROTOCOL'
}
Uncaught:
at __node_internal_captureLargerStackTrace (node:internal/errors:496:5)
at new NodeError (node:internal/errors:405:5)
at new ClientRequest (node:_http_client:188:11)
at request (node:https:358:10)
at Object.get (node:https:392:15) {
code: 'ERR_INVALID_PROTOCOL'
}
お前まじかって気持ちになった…