38 lines
763 B
JavaScript
38 lines
763 B
JavaScript
|
// Flags: --expose-http2
|
||
|
'use strict';
|
||
|
|
||
|
const common = require('../common');
|
||
|
const h2 = require('http2');
|
||
|
|
||
|
const server = h2.createServer();
|
||
|
|
||
|
// we use the lower-level API here
|
||
|
server.on('stream', common.mustCall(onStream));
|
||
|
|
||
|
function onStream(stream, headers, flags) {
|
||
|
stream.respond({
|
||
|
'content-type': 'text/html',
|
||
|
':status': 200
|
||
|
});
|
||
|
stream.end('hello world');
|
||
|
}
|
||
|
|
||
|
server.listen(0);
|
||
|
|
||
|
server.on('listening', common.mustCall(() => {
|
||
|
|
||
|
const client = h2.connect(`http://localhost:${server.address().port}`);
|
||
|
|
||
|
const req = client.request({ ':path': '/' });
|
||
|
client.priority(req, {});
|
||
|
|
||
|
req.on('response', common.mustCall());
|
||
|
req.resume();
|
||
|
req.on('end', common.mustCall(() => {
|
||
|
server.close();
|
||
|
client.destroy();
|
||
|
}));
|
||
|
req.end();
|
||
|
|
||
|
}));
|