-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
47 lines (34 loc) · 813 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
36
37
38
39
40
41
42
43
44
45
46
47
const express = require('express')
const app = express()
const bodyParser = require('body-parser')
const port = 8080
app.use(bodyParser.urlencoded({extended: false}))
app.use(bodyParser.json())
app.get('/home', (req, res) => {
res.send('Welcome to my first backend!')
})
app.post('/data', (req, res) => {
console.log('Post dari body : ', req.body)
})
// app.post('/profile', (req, res) => {
// res.send(req.body)
// console.log(req.body)
// })
app.patch('/profile', (req, res) => {
let dataRes = {
name: req.body.name,
batch: req.body.batch,
email: req.body.email
}
let data = {
name: 'Jane',
batch: '17.2',
email: '[email protected]'
}
let filter = {...dataRes, ...data}
res.send(filter)
console.log(filter)
})
app.listen(port, () => {
console.log('Port sedang berjalan')
})