Skip to content

Instantly share code, notes, and snippets.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@joews
joews / express-http2.js
Created June 4, 2016 22:42
Minimal express.js app with HTTP/2
const spdy = require("spdy");
const keys = require("spdy-keys");
const express = require("express");
const app = express();
app.get("*", (req, res) => {
res.send("aloha");
})