UNPKG
hapi-hpkp
Version:
latest (2.0.0)
2.0.0
1.0.0
Hapi module to add HPKP headers
github.com/vbudhram/hapi-hpkp
vbudhram/hapi-hpkp
hapi-hpkp
/
index.js
15 lines
(12 loc)
•
266 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/** * Hapi middleware to append HPKP headers to all responses. * */
'use strict'
var
hpkp =
require
(
'./lib/hpkp'
)
exports
.
plugin
= {
pkg
:
require
(
'./package.json'
),
register
:
function
(
server, options
) { server.
ext
(
'onPreResponse'
,
hpkp
(options)) } }