Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for module http2? #2761

Open
jabrena opened this issue Sep 23, 2015 · 35 comments
Open

Support for module http2? #2761

jabrena opened this issue Sep 23, 2015 · 35 comments
Assignees
Labels

Comments

@jabrena
Copy link

jabrena commented Sep 23, 2015

Hi, I would like to know if Express 5.0 will have support for http2:
https:/molnarg/node-http2

I was reading a bit and I noticed that exist a problem with http2 module:
molnarg/node-http2#100

I have tested in local and the problem continues:
https:/jabrena/CloudFoundryLab/blob/master/Node_HelloWorld_http2_express/index.js

It this issue in the roadmap?
Does exist another alternative to run a express application with http2?

Many thanks in advance.

Juan Antonio

@jabrena
Copy link
Author

jabrena commented Sep 23, 2015

I have just tested with latest release alpha (5.0.0-alpha.2) and the problem continues:


/*jslint node: true*/
"use strict";

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

var app = express();
app.get('/', function (req, res) {
    console.log(req.headers);

    res.header('Content-type', 'text/html');
    return res.end('<h1>Hello, Secure World!</h1>');
});

var options = {
    key: fs.readFileSync('./certificate/localhost.key'),
    cert: fs.readFileSync('./certificate/localhost.crt')
};
var port = process.env.VCAP_APP_PORT || 8080;
http2.createServer(options, app).listen(port);

traces:


    dest.end();
         ^

TypeError: dest.end is not a function
    at Stream.onend (_stream_readable.js:490:10)
    at Stream.g (events.js:260:16)
    at emitNone (events.js:72:20)
    at Stream.emit (events.js:166:7)
    at endReadableNT (_stream_readable.js:893:12)
    at doNTCallback2 (node.js:429:9)
    at process._tickCallback (node.js:343:17)
23 Sep 12:15:24 - [nodemon] app crashed - waiting for file changes before starti
ng...

@dougwilson
Copy link
Contributor

Hi! o answer your question, yes, it is a known issue, and no, has not yet been addressed. We have a link back to that referenced http2 issue (noted in molnarg/node-http2#100 (comment)) already to track this as well as it listed in our Express 5 roadmap (#2237):

Support non-core HTTP prototypes (e.g. http2, shot and others)

The 5.0 alpha 2 does not work because it has not been addressed yet. It is not a simple fix at all, and any help you want to provide toward this as part of a PR is much appreciated!

@dougwilson
Copy link
Contributor

In addition, if all you want to do is replicate the Express routing with http2, the module router (https:/pillarjs/router) is the actual Express 4.x router, extracted into it's own module and will work just fine with http2:

/*jslint node: true*/
"use strict";

var finalhandler = require('finalhandler');
var fs = require('fs');
var http2 = require('http2');
var Router = require('router');

var router = new Router();
router.get('/', function (req, res) {
    console.log(req.headers);

    res.setHeader('Content-type', 'text/html');
    return res.end('<h1>Hello, Secure World!</h1>');
});

var options = {
    key: fs.readFileSync('./certificate/localhost.key'),
    cert: fs.readFileSync('./certificate/localhost.crt')
};
var port = process.env.VCAP_APP_PORT || 8080;
http2.createServer(options, app).listen(port);

function app(req, res) {
    router(req, res, finalhandler(req, res));
}

@jabrena
Copy link
Author

jabrena commented Sep 23, 2015

Hi @dougwilson, if you provide some technical documentation to check that classes, I could help you to begin fixing this issue. Tomorrow, I will test the alternative.

@dougwilson
Copy link
Contributor

Hi @jabrena , I'm not sure what kind of technical documentation you are looking for. All Express documentation is located at http://expressjs.com/ and anything technical is gathered from reading the JavaScript source code of Express.

@jabrena
Copy link
Author

jabrena commented Sep 23, 2015

No problem, will try to check this part:

Prototype = req.__proto__; 
req.__proto__ = app.request; app.request.__proto__ = originalPrototype; 

it is a clue from a comment in:
molnarg/node-http2#100

Besides, I will compare current router with the router that runs with http2

Juan Antonio

@listepo
Copy link

listepo commented Oct 10, 2015

@jabrena , @dougwilson why not https:/indutny/node-spdy?

With this module you can create HTTP2 / SPDY

@dougwilson
Copy link
Contributor

AFAIK node-spdy already works with Express 4

@listepo
Copy link

listepo commented Oct 10, 2015

👍

@jabrena
Copy link
Author

jabrena commented Oct 10, 2015

Pretty interesting!!!
I will test next week.
@victorherraiz @Isuriv

@ronkorving
Copy link

I can confirm node-spdy works fine, I'm using it. It doesn't however let you use HTTP/2 push promises very easily with Express. I made an issue about this at #2781.

@Fishrock123
Copy link
Contributor

I think having http2 out of the box is perhaps a little out of scope of express itself?

@dougwilson
Copy link
Contributor

I think having http2 out of the box is perhaps a little out of scope of express itself?

It may be, but I interpret this issue as the fact that it's impossible to even use the http2 module. Technically Express doesn't really do HTTP out of the box, unless you count the single app.listen entry point. HTTP support is, in the general sense, done with http.createServer(app), and that should work for the http2 and other modules for this issue to be considered closed.

@ronkorving
Copy link

The problem to me is not that express is not compatible with the spdy module. They are compatible, it all works. However, if I want to use HTTP2 push promises, all the goodies of Express, like .static and sendFile become unusable. I cannot connect their logic to the push promise stream.

@dougwilson
Copy link
Contributor

Hi @ronkorving, perhaps open a new issue in regards to that problem? I don't want to loose sight on the issue brought up in the original post on the issue, which is specifically about working with http2. Please open a new issue, providing as much detail into the problem as you can, so we can reproduce and see what we can figure out.

@ronkorving
Copy link

You mean like #2781 ? :)

@dougwilson
Copy link
Contributor

Ah, yep :) But I don't know anything about node-spdy and there is no code for me to even play with. Without a full way to reproduce and the technical details of the issue, I'm not sure how much help I can be on that issue. @jonathanong replied to you and he has used that module in the past, but I don't think anyone else has and I forgot that even existed. Can you fill out the issue some more for use non-spdy users?

@ronkorving
Copy link

No problem 👍

@cchamberlain
Copy link

@dougwilson - I went down your path of using router module and ran into issues with not being able to use res.sendFile anymore. I ended up extracting all the sendFile logic and reworking it as a thunk that works just like serveStatic (supports all sendFile options). I published it as serve-file module, may come in handy to anyone that ran into the same issues as me. I tested it on http2 / spdy with router and had no issues:

import serveFile from 'serve-file'

app.use('/my-file.txt', serveFile('path/to/my-file.txt'))

@tunniclm
Copy link
Contributor

tunniclm commented May 4, 2016

I'm quite curious if initialising an express application as follows would be enough to resolve the problems. It seems to be enough to get a very simple application working (on express 5.0 branch):

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

express.request.__proto__ = http2.IncomingMessage.prototype;
express.response.__proto__ = http2.ServerResponse.prototype;

var app = express();
...

@dhananjay1405

This comment was marked as outdated.

@asbjornu
Copy link

@tunniclm, your work looks promising. Any reason why you're not submitting it as a pull request towards the official repository?

@krzysdz
Copy link
Contributor

krzysdz commented Mar 25, 2019

@asbjornu There's also PR #3730, which could add http/2 support for express and maybe it will be merged.

@SampsonCrowley
Copy link

For anyone saying just use spdy, HTTP/2 is an actual standard now. SPDY is not. On top of that spdy makes heavy use of private internal functions in node. It is broken and expected not to be fixed for any node version >= 11.1

IMO supporting the actual native http2 should be the current direction that express takes

@kristian
Copy link

as @nwgh actually mentioned in molnarg/node-http2#100 on Aug 9, 2016 already:

[...] just to note, spdy is dead.

So the SPDY package is no longer maintained, and due to a bug in the handle-thing dependency even broken when running with node > 11.1 (see nodejs/node#24097). So going for SPDY is clearly no longer an option! The only way forward for express supporting HTTP/2 is the Node.js http2 package.

Is there any update on the progress about this? It'd be a bummer if Express 5 would not provide any HTTP/2 support! Thanks.

@GaryMatthews
Copy link

Has anybody got anything to push to fix http/2 issues? log in #4112 for 4.17.1/5.0/5.x... we tried pillerjs/router as a fix but still leaves is in a broken state. many modules and process explicitly depend on express being available and have only managed to work through a fraction of them to remove express dependencies.

@RandomByte
Copy link

fyi, the spdy/handle-thing issue has been fixed: spdy-http2/handle-thing#13

I was just able to start an HTTP/2 server using spdy and express on Node v12.6.0 and v13.11.0. I get an ugly console message (node:48680) [DEP0066] DeprecationWarning: OutgoingMessage.prototype._headers is deprecated but apart from that, spdy seems to work with the latest Node.js versions again.

@PPInfy
Copy link

PPInfy commented Feb 22, 2022

Some one has created a bridge to make this work. Contributors/Maintaners here can check it and update it if needed,
https://javascript.plainenglish.io/serving-hello-world-with-http2-and-express-js-4dd0ffe76860

@dfenerski
Copy link

node-spdy does not work for static files on node >=15; link to issue.

@eiskalteschatten

This comment was marked as spam.

@gxy5202

This comment was marked as spam.

@expressjs expressjs deleted a comment from brandonros Jul 7, 2022
@expressjs expressjs locked as spam and limited conversation to collaborators Jul 7, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

No branches or pull requests