diff options
author | Marvin Borner | 2022-10-23 13:07:34 +0200 |
---|---|---|
committer | Marvin Borner | 2022-10-23 13:09:17 +0200 |
commit | b3e92ed5e8a77ccc8db61712a3ad805f9d25ced3 (patch) | |
tree | 2c42a99d4e6b904622565003e24971773a39cc10 /impl/node/index.js |
Diffstat (limited to 'impl/node/index.js')
-rw-r--r-- | impl/node/index.js | 14 |
1 files changed, 14 insertions, 0 deletions
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}`) +}) |