-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.js
More file actions
21 lines (16 loc) · 698 Bytes
/
app.js
File metadata and controls
21 lines (16 loc) · 698 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require('dotenv').config()
const express = require('express')
const path = require('path')
const cookieParser = require('cookie-parser')
const logger = require('morgan')
const indexRouter = require('./routes/index')
const {createProduct, getProductById, updateProductById,getAllProduct,deleteProductById} = require('./routes/products')
const app = express()
app.use(logger('dev'))
app.use(express.json())
app.use(express.urlencoded({extended: true}))
app.use(cookieParser())
app.use(express.static(path.join(__dirname, 'public')))
app.use('/products', indexRouter)
app.use('/api/products', createProduct, getProductById, updateProductById,getAllProduct,deleteProductById)
module.exports = app