Saksham Khandelwal (@devlord) | Tags

devlord's cover image
Powered by FIFO
devlord's image

Saksham Khandelwal

Software Engineer

Followers26
Following18
Spaces2

Request parameters

I mentioned how the Request object holds all the HTTP request information. These are the main properties you'll likely use:

media

The first "Hello, World" example---

Heyy everyone, Today we will be discussing the next part of Express :)

const express = require('express')

const app = express()

app.get('/', (req, res) => res.send('Hello World!'))

app.listen(3000, () => console.log('Server ready'))

These 4 lines of code do a lot behind the scenes.