From 60c647d0da78f4ce5f5814328bca63b4f242c6a1 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Mon, 29 Feb 2016 10:06:29 -0700 Subject: [PATCH] address #26 - explicitly list http2 install --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index d00449c..6d1b940 100644 --- a/README.md +++ b/README.md @@ -60,6 +60,10 @@ letsencrypt certonly --standalone \ ### Standalone +```bash +npm install --save http2 +``` + ```javascript lex.onRequest = function (req, res) { res.end('Hello, World!'); @@ -76,6 +80,10 @@ lex.listen([80], [443, 5001], function () { ## Express +```bash +npm install --save http2 +``` + ```javascript // A happy little express app var app = require('express')();