Express JS Tutorial #8 - Router | Expressjs Tutorial For Beginners

preview_player
Показать описание
Learn express js tutorial for beginners, node express js tutorial, express js tutorial, express node js tutorial, express js tutorial 2020, express node js mongodb, express node js rest api, express node js tutorial for beginners, express node tutorial, express node mysql, express node js project, express node js mysql, express nodemon, express js crash course, express js project, express js api, expressjs tutorial for beginners, node express, node express mongodb tutorial, node express mysql, node express api

Node express project, node express mongodb, node express typescript, node express rest api, node express react, express js api, express js app, express js api tutorial, express js advanced, express js and mongodb tutorial, express js tutorial youtube, tutorial express js, express js mongodb, express js explained, express js mysql, express js routing, express js full course, express js routes tutorial, express js route params, express js routes in separate file, express js router example, express js route with parameter, express js mongodb crud, express js mongodb, express js mongodb insert, express js mongoose example, express js mongoose, express js mongoose tutorial, express js database tutorial, express js database

ExpressJS Tutorial For Beginners Playlist

ExpressJS Tutorial For Beginners #1

ExpressJS Tutorial For Beginners #2

ExpressJS Tutorial For Beginners #3

ExpressJS Tutorial For Beginners #4

ExpressJS Tutorial For Beginners #5

ExpressJS Tutorial For Beginners #6

ExpressJS Tutorial For Beginners #7

ExpressJS Tutorial For Beginners #8

ExpressJS Tutorial For Beginners #9

ExpressJS Tutorial For Beginners #10

ExpressJS Tutorial For Beginners #11

ExpressJS Tutorial For Beginners #12

ExpressJS Tutorial For Beginners #13

ExpressJS Tutorial For Beginners #14
Рекомендации по теме
Комментарии
Автор

This routing tutorial is helpful which I cannot find in other tutorials using MERN. They quickly dive into using this modular approach which confuses a lot of newbies like me. Thank you.

YOUTUBE_IS_WOKE
Автор

thank you sir! this tutorial helps to understand more about routing in expressJS

anangyoga
Автор

Thank you for the tutorial its very helpful, hope you will make more of these in the future or even build a real-time project using express js

reynaldlamury
Автор

Excellent job. I am enjoying your lecture, my dear friend. You are awesome!

amanuellebassi
Автор

For me express to run, I always have to declare a new port number, because if I use the previous port number it doesn't work. why this ?

TechEase
Автор

As per my understanding, for consuming modules need to use "use" keyword. Inside of each module to configuring router object only need to use "get" keyword. Hope my understanding was correct. If my undestanding is not correct then please, let me know sir. Thanks for your wonderful explanation.

kolluruprakash
Автор

Im unable to use the post method url in showing cannot get url..but get method is running without error

Akash-xtwz
Автор

We installed nodemon so that the changes should reflect automatically but here we are closing and again starting the server why.

rohitsachdeva
Автор

I am getting error user is not defined in index.js where to check

poojaagrawal
Автор

You are Doing great but You need to be slow

kcold
Автор

Please, explain me when to use "use" and "get". Really got confulsed! Please, help me out in ASAP.

kolluruprakash
Автор

Sir, the triple slashes that you used are those comments or something else?. I have seen the same thing while I was working in a C# service but I was never able to understand it.

floydfernandes
Автор

bro there is lack of technique in you to explain others

sarthakkapoor
Автор

bro i had set up everything corretly

index.js
var express = require('express');
var app = express();

var
app.use('/user', user);


//listen Port
app.listen(5000);

user.js

var express = require("express");
var router = express.Router();

// /user/
router.get('/', (req, res) => {
res.send("this all should work");
})

module.exports = router;

but its not working bro i am getting error as cannot get / on browser can u please help me out bro

nivethaganesh