We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c69ff93 commit b3264a9Copy full SHA for b3264a9
index.js
@@ -0,0 +1,8 @@
1
+"use strict";
2
+{
3
+ const exp = require('express');
4
+ const app = exp();
5
+ const port = process.env.PORT || 8080;
6
+ app.use("/",exp.static("./"));
7
+ const server = app.listen(port, () => `Server up at @{new Date()} on port ${port}`);
8
+}
0 commit comments