ขนาดวิดีโอ: 1280 X 720853 X 480640 X 360
แสดงแผงควบคุมโปรแกรมเล่น
เล่นอัตโนมัติ
เล่นใหม่
Thank you Hitesh for your Quality Courses. I am learning a lot from this and all of yours courses.
Thanks!
Greate Videos i don't know why people are not watching
Amazing video & Quality Content.
appriciate the great content, helped me a lot thanks
yea enjoyed it !!!
Will you please make a video on JWT token base authentication, it will be very helpful
Good explanation
Thanks, easy to understand
hi hitesh where is nodejs server code , please share the link
provide local host directory file that mention in previous vd and this vd
How to create feature flag in Go??
👍🏾great
great
I think the server is down now. Cause when I send the get request then it is showing that "connection was refused by the server"
bro you have to start the server yourself on your own pc:)
Pretty cool
Hi sir 👍
Thanks
Sir Can you pls share the github link for the repository ?
// Express Framework Setup:const express = require('express')const app = express()const port = 8000app.use(express.json());app.use(express.urlencoded({extended: true}))// Route Handling:app.get('/', (req, res) => { res.status(200).send('Hello! this is Route /')})app.get('/get', (req, res) => { res.status(200).json({message: "You are Route /GET"})})app.post('/post', (req, res) => { let myJson = req.body; res.status(200).send(myJson)})// Listening for Requests:app.listen(port, () => { console.log(`Listening on PORT::${port}`)})
Thank you Hitesh for your Quality Courses. I am learning a lot from this and all of yours courses.
Thanks!
Greate Videos i don't know why people are not watching
Amazing video & Quality Content.
appriciate the great content, helped me a lot thanks
yea enjoyed it !!!
Will you please make a video on JWT token base authentication, it will be very helpful
Good explanation
Thanks, easy to understand
hi hitesh where is nodejs server code , please share the link
provide local host directory file that mention in previous vd and this vd
How to create feature flag in Go??
👍🏾great
great
I think the server is down now. Cause when I send the get request then it is showing that "connection was refused by the server"
bro you have to start the server yourself on your own pc:)
Pretty cool
Hi sir 👍
Thanks
Sir Can you pls share the github link for the repository ?
// Express Framework Setup:
const express = require('express')
const app = express()
const port = 8000
app.use(express.json());
app.use(express.urlencoded({extended: true}))
// Route Handling:
app.get('/', (req, res) => {
res.status(200).send('Hello! this is Route /')
})
app.get('/get', (req, res) => {
res.status(200).json({message: "You are Route /GET"})
})
app.post('/post', (req, res) => {
let myJson = req.body;
res.status(200).send(myJson)
})
// Listening for Requests:
app.listen(port, () => {
console.log(`Listening on PORT::${port}`)
})