app.js 1.23 KB
Newer Older
Kim, Subin's avatar
Kim, Subin committed
1
// const createError = require('http-errors');
2

Kim, Subin's avatar
Kim, Subin committed
3
4
const express = require('express');
const path = require('path');
5
6
// const cookieParser = require('cookie-parser');
// const logger = require('morgan');
Kim, Subin's avatar
Kim, Subin committed
7
8
const port = 3030;

9
// const indexRouter = require('./routes/index');
Kim, Subin's avatar
Kim, Subin committed
10
11

const app = express();
12
// connect();
Kim, Subin's avatar
Kim, Subin committed
13
14
15
16
17
18
19
20
21

// view engine setup
// app.set('views', path.join(__dirname, 'views'));
// app.set('view engine', 'pug');

// app.use(logger('dev'));
app.use(express.json());
app.use(express.urlencoded({ extended: false }));
// app.use(cookieParser(process.env.JWT_SECRET));
22
// app.use(express.static(path.join(__dirname, 'public')));
Kim, Subin's avatar
Kim, Subin committed
23

24
25
26
27
28
// app.use('/', indexRouter);
app.get('/', (req, res)=>{
  res.send('hello')
  console.log(req)
})
Kim, Subin's avatar
Kim, Subin committed
29
30

app.listen(port, () => console.log(port));
31
// app.listen(3001, () => console.log(port));
Kim, Subin's avatar
Kim, Subin committed
32
33
34
35
36
37
38
39
40
41

// catch 404 and forward to error handler
app.use(function(req, res, next) {
  next(createError(404));
});

// error handler
app.use(function(err, req, res, next) {
  // set locals, only providing error in development
  res.locals.message = err.message;
42
  // res.locals.error = req.app.get('env') === 'development' ? err : {};
Kim, Subin's avatar
Kim, Subin committed
43
44
45
46
47
48
49

  // render the error page
  res.status(err.status || 500);
  // res.render('error');
});

module.exports = app;