1
0

Video 46: Serving up CSS, JS, Impages, and More

This commit is contained in:
Jason Williams
2019-09-30 11:17:07 -06:00
parent 8f136ffed8
commit e393438dd1
7 changed files with 31 additions and 6 deletions

View File

@@ -8,7 +8,7 @@ app.use(express.static(publicDirectoryPath))
app.get('/weather', (req, res) => {
res.send({
forecast: 'It\'s snowing. It\'s really gross out.',
forecast: 'It is snowing. In September.',
location: 'Calgary'
})
})