UNPKG
headary
Version:
latest (2.0.0)
2.0.0
1.0.1
1.0.0
Summarize basic HTTP status codes and headers
github.com/michaelnisi/headary
michaelnisi/headary
headary
/
example.js
8 lines
(6 loc)
•
152 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
const
http =
require
(
'http'
)
const
headary =
require
(
'./'
) http.
get
(
'http://google.com/hello'
,
(
res
) =>
{
const
h =
headary
(res)
console
.
log
(h) })