diff --git a/index.js b/index.js index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..942e4683803c76520753626f6411d88343786062 100644 --- a/index.js +++ b/index.js @@ -0,0 +1,9 @@ +const express = require('express'); +const app = express(); + +app.use(express.static('static')); + +const server_port = 3000; +app.listen(server_port, function () { + console.log(`This server is listening on http://localhost:${server_port}`); +}); \ No newline at end of file