Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 677 Bytes

README.md

File metadata and controls

25 lines (17 loc) · 677 Bytes

security-headers

Query securityheaders.io.

All credit goes to Scott Helme who created the service. If this is useful to you then please consider donating, you can find more information about that over at https://securityheaders.io/about/.

usage

const headers = require(`security-headers`)

headers(`google.com`)
.then(result => console.log(
  `Missing headers: ${result.missingHeaders}`
))
.catch(console.log)

api

headers(url[, followRedirects, hide])

  • url - <String>
  • followRedirects - <Boolean>
  • hide - <Boolean>