-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
36 lines (26 loc) · 877 Bytes
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// var express = require('express'),
// app = express(),
// port = process.env.PORT || 3005;
// app.listen(port);
// app.use(function(req, res) {
// res.status(404).send({url: req.originalUrl + ' not found'})
// });
// console.log('todo list RESTful API server started on: ' + port);
const express = require('express');
const path = require('path');
const cookieParser = require('cookie-parser');
const app = express();
const indexRouter = require('./routes/index');
const stockRouter = require('./routes/v1/stock');
app.use(express.json());
app.use(express.urlencoded({extended: false}));
app.use(cookieParser());
app.use(express.static(path.join(__dirname, 'public')));
app.use('/', indexRouter);
app.use('/v1/check-stock', stockRouter);
app.get('*', (req, res) => {
return res.status(404).json({
message: 'wrong route',
});
});
module.exports = app;