web-dev-qa-db-ja.com

node.jsサーバーおよびexpress.jsを使用したHTTP / 2(2.0)

現在、node.js HTTP/2(HTTP 2.0)サーバーを取得することはできますか? express.jsのhttp 2.0バージョン?

43
WHITECOLOR

express@^5およびhttp2@^3.3.4を使用している場合、サーバーを起動する正しい方法は次のとおりです。

const http2 = require('http2');
const express = require('express');

const app = express();

// app.use('/', ..);

http2
    .raw
    .createServer(app)
    .listen(8000, (err) => {
        if (err) {
            throw new Error(err);
        }

        /* eslint-disable no-console */
        console.log('Listening on port: ' + argv.port + '.');
        /* eslint-enable no-console */
    });

https2.rawに注意してください。 TCP接続を受け入れたい場合は必須です。

この記事の執筆時点(2016年5月6日)で、 主要なブラウザはいずれもTCPを介したHTTP2 をサポートしていません。

TCPおよびTLS接続を受け入れたい場合、デフォルトのcreateServerメソッドを使用してサーバーを起動する必要があります。

const http2 = require('http2');
const express = require('express');
const fs = require('fs');


const app = express();

// app.use('/', ..);

http2
    .createServer({
        key: fs.readFileSync('./localhost.key'),
        cert: fs.readFileSync('./localhost.crt')
    }, app)
    .listen(8000, (err) => {
        if (err) {
            throw new Error(err);
        }

        /* eslint-disable no-console */
        console.log('Listening on port: ' + argv.port + '.');
        /* eslint-enable no-console */
    });

この記事の執筆時点では、expresshttp2を動作させることができました( https://github.com/molnarg/nodeを参照してください) -http2/issues/100#issuecomment-217417055 )。ただし、 spdy パッケージを使用してhttp2(およびSPDY)を動作させることができました。

const spdy = require('spdy');
const express = require('express');
const path = require('path');
const fs = require('fs'); 

const app = express();

app.get('/', (req, res) => {
    res.json({foo: 'test'});
});

spdy
    .createServer({
        key: fs.readFileSync(path.resolve(__dirname, './localhost.key')),
        cert: fs.readFileSync(path.resolve(__dirname, './localhost.crt'))
    }, app)
    .listen(8000, (err) => {
        if (err) {
            throw new Error(err);
        }

        /* eslint-disable no-console */
        console.log('Listening on port: ' + argv.port + '.');
        /* eslint-enable no-console */
    });
15
Gajus
var express = require('express');
var app = express();

app.get('/', function (req, res) {
  res.send('hello, http2!');
});

var options = {
  key: fs.readFileSync('./example/localhost.key'),
  cert: fs.readFileSync('./example/localhost.crt')
};

require('http2').createServer(options, app).listen(8080);

[〜#〜] edit [〜#〜]

このコードスニペットは、 Githubでの会話

26
HDK

この問題は今日(1年後)にまだ残っているので、エクスプレスパッケージとhttp2パッケージがうまく連携するように回避策を講じることに決めました。まさにそれを行うnpmパッケージを作成しました: https://www.npmjs.com/package/express-http2-workaround

NPM経由でインストール:npm install express-http2-workaround --save

// Require Modules
var fs = require('fs');
var express = require('express');
var http = require('http');
var http2 = require('http2');

// Create Express Application
var app = express();

// Make HTTP2 work with Express (this must be before any other middleware)
require('express-http2-workaround')({ express:express, http2:http2, app:app });

// Setup HTTP/1.x Server
var httpServer = http.Server(app);
httpServer.listen(80,function(){
  console.log("Express HTTP/1 server started");
});

// Setup HTTP/2 Server
var httpsOptions = {
    'key' : fs.readFileSync(__dirname + '/keys/ssl.key'),
    'cert' : fs.readFileSync(__dirname + '/keys/ssl.crt'),
    'ca' : fs.readFileSync(__dirname + '/keys/ssl.crt')
};
var http2Server = http2.createServer(httpsOptions,app);
http2Server.listen(443,function(){
  console.log("Express HTTP/2 server started");
});

// Serve some content
app.get('/', function(req,res){
    res.send('Hello World! Via HTTP '+req.httpVersion);
});

上記のコードは、nodejs httpモジュール(HTTP/1.xの場合)とhttp2モジュール(HTTP/2の場合)の両方を使用する動作中のエクスプレスアプリケーションです。

READMEで述べたように、これにより新しい高速要求および応答オブジェクトが作成され、プロトタイプがhttp2のIncomingMessageおよびServerResponseオブジェクトに設定されます。デフォルトでは、組み込みのnodejs http IncomingMessageおよびServerResponseオブジェクトです。

これが役立つことを願っています:)

1
Jashepp