deps: Installed nodemon for more developer happyness
This commit is contained in:
parent
63b58a8242
commit
b158635811
846
package-lock.json
generated
846
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -8,9 +8,11 @@
|
|||||||
"mustache-express": "^1.3.0",
|
"mustache-express": "^1.3.0",
|
||||||
"mysql": "^2.18.1"
|
"mysql": "^2.18.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {},
|
"devDependencies": {
|
||||||
|
"nodemon": "^2.0.2"
|
||||||
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "node ./src/index.js"
|
"start": "nodemon ./src/index.js"
|
||||||
},
|
},
|
||||||
"author": "McArn",
|
"author": "McArn",
|
||||||
"license": "ISC"
|
"license": "ISC"
|
||||||
|
@ -2,14 +2,14 @@ const express = require('express');
|
|||||||
const app = express();
|
const app = express();
|
||||||
const port = 2428;
|
const port = 2428;
|
||||||
|
|
||||||
const server = app.listen(port, () => console.log(`Gymrooster running on port ${port}`));
|
const server = app.listen(port, () => console.log(`Gymrooster running on port ${port}\nVisit it at http://localhost:${port}`));
|
||||||
var path = require('path');
|
var path = require('path');
|
||||||
|
|
||||||
var mustacheExpress = require('mustache-express');
|
var mustacheExpress = require('mustache-express');
|
||||||
|
|
||||||
// Register '.mustache' extension with The Mustache Express
|
// Register '.mustache' extension with The Mustache Express
|
||||||
app.engine('mustache', mustacheExpress());
|
app.engine('mustache', mustacheExpress());
|
||||||
|
|
||||||
app.set('view engine', 'mustache');
|
app.set('view engine', 'mustache');
|
||||||
app.set('views', path.resolve('views/'));
|
app.set('views', path.resolve('views/'));
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user