We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1cc4c8b commit 9d746e8Copy full SHA for 9d746e8
src/app.js
@@ -0,0 +1,11 @@
1
+'use strict';
2
+
3
+var express = require('express');
4
5
+var app = express();
6
7
+app.use('/', express.static('public'));
8
9
+app.listen(3000, function() {
10
+ console.log("The server is running on port 3000!");
11
+});
0 commit comments