diff --git a/index.html b/index.html new file mode 100644 index 0000000..c0fa813 --- /dev/null +++ b/index.html @@ -0,0 +1,4 @@ + + +hola hola hola + diff --git a/index.js b/index.js new file mode 100644 index 0000000..bac8963 --- /dev/null +++ b/index.js @@ -0,0 +1,7 @@ +app.get('/',function(req,res){ + + console.log(req.method+" request received at "+req.url); + res.sendFile(__dirname+'/index.html'); + + +}); diff --git a/package.json b/package.json new file mode 100644 index 0000000..571dbdc --- /dev/null +++ b/package.json @@ -0,0 +1,19 @@ +{ + "name": "amizone", + "version": "0.0.0", + "description": "coz hostel outpass system sucks", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/aaayushsingh/hop_fake.git" + }, + "author": "Ayush Singh", + "license": "ISC", + "bugs": { + "url": "https://github.com/aaayushsingh/hop_fake/issues" + }, + "homepage": "https://github.com/aaayushsingh/hop_fake#readme" +}