server is just simple static file server

This commit is contained in:
Niel 2019-01-10 22:06:42 +01:00
parent a8ebe88730
commit 38c66af1a2
2 changed files with 6 additions and 15 deletions

View file

@ -1,15 +1,8 @@
const express = require('express');
const app = express();
const path = require('path');
const router = express.Router();
router.get('/',function(req,res){
res.sendFile(path.join(__dirname+'/page/index.html'));
});
app.use(express.static('page'));
app.use('/', router);
app.listen(process.env.port || 8080);
console.log('.');
app.listen(process.env.port || 8080, () =>{
console.log('Clock-Server is running');}
)

View file

@ -4,7 +4,7 @@
"description": "Hosts Global Cliffbreak Time",
"main": "index.js",
"scripts": {
"start": "node index.js"
"start": "node ."
},
"repository": {
"type": "git",
@ -13,8 +13,6 @@
"author": "Alpha, SimGie",
"license": "ISC",
"dependencies": {
"express": "^4.16.4",
"path": "^0.12.7"
},
"devDependencies": {}
"express": "^4.16.4"
}
}