Home
Head's Up: I'm in the middle of upgrading my site. Most things are in place, but there are something missing and/or broken including image alt text. Please bear with me while I'm getting things fixed.

Get The HTTP Status Code Of A Web Page

HTTP and HTTPS are called via different modules

javascript
const https = require('https')

https.get('https://www.alanwsmith.com/', (res) => {
  console.log('statusCode:', res.statusCode)
  console.log('headers:', res.headers)
})
javascript
const http = require('http')

http.get('http://www.alanwsmith.com/', (res) => {
  console.log('statusCode:', res.statusCode)
  console.log('headers:', res.headers)
})