merge bessere-version-wie-von-moritz #1

Merged
Alpha merged 3 commits from 123niel/Time-Service:bessere-version-wie-von-moritz into master 2019-01-15 10:55:59 +00:00
2 changed files with 6 additions and 15 deletions
Showing only changes of commit 38c66af1a2 - Show all commits

View file

@ -1,15 +1,8 @@
const express = require('express'); const express = require('express');
const app = 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(express.static('page'));
app.use('/', router); app.listen(process.env.port || 8080, () =>{
app.listen(process.env.port || 8080); console.log('Clock-Server is running');}
)
console.log('.');

View file

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