From b3e92ed5e8a77ccc8db61712a3ad805f9d25ced3 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sun, 23 Oct 2022 13:07:34 +0200 Subject: Initial commit --- impl/node/index.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 impl/node/index.js (limited to 'impl/node/index.js') diff --git a/impl/node/index.js b/impl/node/index.js new file mode 100644 index 0000000..a0a09cd --- /dev/null +++ b/impl/node/index.js @@ -0,0 +1,14 @@ +const express = require('express') +const app = express() +const path = require +const static = __dirname + '/../../public' +app.use(express.static(static)) +const port = 3000 + +app.get('/:addr(-?\\d+)', (req, res) => { + res.sendFile(path.resolve(static + '/exec.html')) +}) + +app.listen(port, () => { + console.log(`listening on ${port}`) +}) -- cgit v1.2.3