Query String

The Query String

The query string is a portion of the URL that allows you to provide additional information to the server.

1
2
3
4
5
6
7
8
9
10
11
12
13
app.get('/weather', (req, res) => {
console.log(req.query)
if (!req.query.address) {
return res.send({
error: "You must provide an address."
})
}
res.send({
forcast: 'forcast',
location: 'location',
address: req.query.address
})
})