diff --git a/typescript/translucid/index.html b/typescript/translucid/index.html deleted file mode 100644 index 6396993..0000000 --- a/typescript/translucid/index.html +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - Document - - - Hello World! - - diff --git a/typescript/translucid/test.js b/typescript/translucid/test.js deleted file mode 100644 index dc459f2..0000000 --- a/typescript/translucid/test.js +++ /dev/null @@ -1,13 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const app_1 = require("./app"); -const { app, translucid } = app_1.QuickServer(8000); -translucid.bind("/", "index.html"); -translucid.bind("/test", "read.js", true, ["class"]); -translucid.use({ - name: "wow, a midleware", - run: (prev, req, res, next) => { - next("sent by a midleware"); - }, - keys: ["class"] -});