Skip to content

Commit a794c9a

Browse files
committed
commit message
0 parents  commit a794c9a

File tree

3 files changed

+21
-0
lines changed

3 files changed

+21
-0
lines changed

.env

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
PASSWORD=NoobMaster69

index.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
// create a basic server
2+
3+
var http = require("http");
4+
var server = http.createServer(function (req, res) {
5+
res.writeHead(200);
6+
res.end("Hello Http");
7+
});
8+
server.listen(8080);

package.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"name": "git-tuts",
3+
"version": "1.0.0",
4+
"description": "",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1",
8+
"start": "node index.js"
9+
},
10+
"author": "",
11+
"license": "ISC"
12+
}

0 commit comments

Comments
 (0)