UP app.jst -> ts
This commit is contained in:
parent
f10cb0ab30
commit
9452dcf90e
@ -1,7 +1,6 @@
|
|||||||
var express = require('express');
|
import express from "express";
|
||||||
var path = require('path');
|
import path from 'path'
|
||||||
var logger = require('morgan');
|
import morgan from 'morgan'
|
||||||
const http = require('http');
|
|
||||||
|
|
||||||
const hostname = '127.0.0.1';
|
const hostname = '127.0.0.1';
|
||||||
const httpPort = 4080;
|
const httpPort = 4080;
|
||||||
@ -15,12 +14,11 @@ var db = mongoose.connection;
|
|||||||
db.on('error', console.error.bind(console, 'MongoDB connection error:'));
|
db.on('error', console.error.bind(console, 'MongoDB connection error:'));
|
||||||
|
|
||||||
var app = express();
|
var app = express();
|
||||||
const httpServer = http.createServer(app);
|
|
||||||
|
|
||||||
app.set('views', path.join(__dirname, 'views'));
|
app.set('views', path.join(__dirname, 'views'));
|
||||||
app.set('view engine', 'hbs');
|
app.set('view engine', 'hbs');
|
||||||
|
|
||||||
app.use(logger('dev'));
|
app.use(morgan('dev'));
|
||||||
app.use(express.json());
|
app.use(express.json());
|
||||||
app.use(express.urlencoded({ extended: false }));
|
app.use(express.urlencoded({ extended: false }));
|
||||||
app.use(express.static(path.join(__dirname, 'public')));
|
app.use(express.static(path.join(__dirname, 'public')));
|
||||||
@ -31,6 +29,6 @@ var apiRouter = require('./routes/api/apiRouter');
|
|||||||
app.use('/', mainRouter);
|
app.use('/', mainRouter);
|
||||||
app.use('/api', apiRouter);
|
app.use('/api', apiRouter);
|
||||||
|
|
||||||
httpServer.listen(httpPort, () => {
|
app.listen(httpPort, () => {
|
||||||
console.log(`Server running at http://${hostname}:${httpPort}/`);
|
console.log(`Server running at http://${hostname}:${httpPort}/`);
|
||||||
});
|
});
|
@ -11,7 +11,6 @@
|
|||||||
"express": "^4.18.2",
|
"express": "^4.18.2",
|
||||||
"@types/express": "^4.17.21",
|
"@types/express": "^4.17.21",
|
||||||
"hbs": "^4.2.0",
|
"hbs": "^4.2.0",
|
||||||
"http": "^0.0.1-security",
|
|
||||||
"mongoose": "^7.5.2",
|
"mongoose": "^7.5.2",
|
||||||
"morgan": "~1.9.1",
|
"morgan": "~1.9.1",
|
||||||
"@types/morgan": "^1.9.9"
|
"@types/morgan": "^1.9.9"
|
||||||
|
29
tsconfig.json
Normal file
29
tsconfig.json
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
// Enable latest features
|
||||||
|
"lib": [
|
||||||
|
"ESNext",
|
||||||
|
"DOM"
|
||||||
|
],
|
||||||
|
"target": "ESNext",
|
||||||
|
"module": "ESNext",
|
||||||
|
"moduleDetection": "force",
|
||||||
|
"jsx": "react-jsx",
|
||||||
|
"allowJs": true,
|
||||||
|
// Bundler mode
|
||||||
|
"moduleResolution": "bundler",
|
||||||
|
"allowImportingTsExtensions": true,
|
||||||
|
"verbatimModuleSyntax": true,
|
||||||
|
"noEmit": true,
|
||||||
|
"resolveJsonModule": true,
|
||||||
|
"esModuleInterop": true,
|
||||||
|
// Best practices
|
||||||
|
"strict": true,
|
||||||
|
"skipLibCheck": true,
|
||||||
|
"noFallthroughCasesInSwitch": true,
|
||||||
|
// Some stricter flags (disabled by default)
|
||||||
|
"noUnusedLocals": false,
|
||||||
|
"noUnusedParameters": false,
|
||||||
|
"noPropertyAccessFromIndexSignature": false
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user