From 2b2c04061d13b10b034cd0041f107b3418d48c9d Mon Sep 17 00:00:00 2001 From: Marius Date: Thu, 27 Sep 2018 17:26:08 +0100 Subject: [PATCH] Add require(express) to example in README --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 673432c6..16e4da50 100644 --- a/README.md +++ b/README.md @@ -79,6 +79,7 @@ server.datastore = new tus.FileStore({ path: '/files' }); +const express = require('express'); const app = express(); const uploadApp = express(); uploadApp.all('*', server.handle.bind(server));