-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
35 lines (26 loc) · 884 Bytes
/
index.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
const express = require('express')
const app = express()
const PORT = 3000
app.use(express.json())
// Import plant routes
const plantRoutes = require('./routes/plantRoutes')
app.get('/', (req, res) => {
res.send('🌱 Plant Care 🌱')
})
// Use the plantRoutes for the /plants path
app.use('/plants', plantRoutes)
// Error-handling middleware
app.use((err, req, res, next) => {
// If the error does not have a statusCode, default it to 500 (Internal Server Error)
err.statusCode = err.statusCode || 500
// If the error does not have a specific 'status', default it to 'error'
err.status = err.status || 'error'
// Send the error response to the client
res.status(err.statusCode).send({
status: err.status,
message: err.message
})
});
app.listen(PORT, () => {
console.log(`Server running at http://localhost:${PORT}`)
})