Introduction to Express Js | Sigma Web Development Course - Tutorial #88

  Рет қаралды 100,059

CodeWithHarry

CodeWithHarry

Күн бұрын

Пікірлер: 564
@EngineerAnsh
@EngineerAnsh 6 ай бұрын
00:01 Express Js is a framework for web development using Node.js 02:12 Express is a framework designed to simplify server-side JavaScript development 04:20 Using npm to install different versions of Express 06:12 ExpressJs basics and handling requests 07:59 Introduction to request parameters and queries in Express Js 09:59 Express Js provides good utilities for creating maintainable endpoints and managing database connections. 11:56 Express.js allows to access URL parameters and query parameters using request params 13:54 Understanding the request object in ExpressJS 16:19 Introduction to Express Js and serving static files 18:32 Express is designed to simplify website development
@HarshBait-g8p
@HarshBait-g8p 14 сағат бұрын
How do you practice of all of these things he thought
@PujaRawat-v1e
@PujaRawat-v1e 11 ай бұрын
I wanted to express my sincere gratitude for the fantastic content you've been sharing on KZbin. Your videos are not only informative but also incredibly engaging. Thanks for making learning such an enjoyable experience. I truly appreciate your efforts! thank u harry bhai😍👐💥
@dhruvinmehta53
@dhruvinmehta53 11 ай бұрын
Genius man , genius playlist , genius audience . We will take a nice job
@nayanpal6439
@nayanpal6439 11 ай бұрын
Code with Harry is not an emotion it's a channel ❤
@awesomeguy6427
@awesomeguy6427 11 ай бұрын
chal chomu comment copy karke cool banne agya.
@Space_Journeyy
@Space_Journeyy 11 ай бұрын
Code with Harry is not a channel it's an emotion 🙂
@divsworld5925
@divsworld5925 6 ай бұрын
@@awesomeguy6427 reddy?
@ZeeshanAli-kd1lp
@ZeeshanAli-kd1lp 4 ай бұрын
wrong, its emotions
@jaydeeprathore5226
@jaydeeprathore5226 10 ай бұрын
bhaiya vese yr video khatam hone ke baad aap bhot mst sounds lagate ho ekdum energetic fir chahe vo koi bhi course ho sare me
@narinderkamboj4335
@narinderkamboj4335 11 ай бұрын
Thanku Harry Bhai for giving most helpful tutorial Please continue all lectures
@GauravKumar_abcd
@GauravKumar_abcd 11 ай бұрын
I have recently learned HTML and CSS through Apna college paid course. I must say that the concepts they are telling is below or on equal level of Harry bhai free course
@AliHamza-n6e
@AliHamza-n6e 11 ай бұрын
@@itxdennis Nah bahi beginners ka lia sahi nahi ha Harry
@HamzaShahzadEB_
@HamzaShahzadEB_ 2 ай бұрын
😂😂​@@AliHamza-n6e
@payalnarwal
@payalnarwal 11 ай бұрын
Consistency 💯 🤩
@kshitij.rajvanshi.9
@kshitij.rajvanshi.9 11 ай бұрын
Hey, have you learnt and understood all topics from the playlist or are you still learning? Can we connect. So that we can share our doubts and learn together
@deepakkansal9112
@deepakkansal9112 10 ай бұрын
nhi degi bhai@@kshitij.rajvanshi.9
@nirvanaseeker6634
@nirvanaseeker6634 21 күн бұрын
Your videos make learning fun and interesting....Thank you for your efforts!
@Hafijur0211
@Hafijur0211 10 ай бұрын
🎯 Key Takeaways for quick navigation: 00:00 📝 *Introduction to Express JS* - Overview of Express.js and its importance in web development. - Express.js helps in building production-level web applications. 00:36 🛠️ *Agenda Overview* - Discussing the agenda for the video, including understanding Express.js and why it's used. - Overview of a basic server created using Express.js. 01:13 🔄 *Server Restart Issue* - Demonstrating a server restart issue where manual restart is required. - Resolving the restart issue using npm's `nodemon` package. 01:54 📂 *Project Structure and Setup* - Setting up an Express.js project using npm. - Creating an initial project directory and installing Express.js. 03:39 🔄 *Express.js Updates* - Discussion on Express.js updates, particularly version 5, and its minor changes. - Mention of changes like capitalizing "D" in "sendFile" and other minor improvements. 04:34 📦 *Installing Express* - Installing specific versions of packages using npm. - Importance of referring to documentation for frameworks. - Demonstrating how to install and set up Express. 05:45 📂 *Exploring Express basics* - Importing and initializing Express. - Setting up route handlers with `app.get`. - Handling requests and responses with route handlers. 07:52 🔄 *Planning for next topics* - Discussing the next topics: request parameters and queries. - Planning to create different pages for an application: about, contact, etc. 08:21 📝 *Overview of writing content in Express.js* - Overview of writing content in Express.js, - Explains writing 'Hello', 'Contact', and 'About' content in Express.js, and the purpose of using 'Hello' and 'Contact' in the code. 09:02 🔍 *Explanation of code execution in Express.js* - Demonstrates how to use endpoints like '/about' and '/contact' in Express.js, - Shows how to handle errors in Express.js when endpoints are not defined properly, - Discusses the importance of managing endpoints efficiently in Express.js. 09:43 💻 *Writing blogs in Express.js* - Demonstrates writing a blog in Express.js, - Discusses the process of writing an 'Introduction to JS' blog in Express.js, - Mentions the possibility of writing an 'Introduction to Python' blog in Express.js. 12:30 🧩 *Parsing Request Parameters in Express* - Demonstrates how to parse request parameters in Express. - Uses the `req.params` object to access parameters from the URL. - Shows how to define multiple parameters and access them in the request handler. 13:39 🔄 *Handling Query Parameters in Express* - Discusses how to handle query parameters in Express. - Explains the use of `req.query` object to retrieve query parameters. - Demonstrates the process of setting query parameters in a URL. 15:01 🚦 *Controlling the Route Flow* - Shows how to control the flow of routes based on query parameters. - Uses the example of setting a dark or light mode for rendering a website. - Demonstrates how to use `req.query` to pass parameters in the URL. 16:30 🔍 *Reviewing URL and Query Parameter Handling* - Reviews the handling of URLs and query parameters in Express. - Shows how to update and access URLs using `req.params` and `req.query`. - Demonstrates logging and outputting request parameters for debugging purposes. 17:11 🔄 *Request and query parameters in Express.js* - Explanation of request.query and request.params in Express.js. - Overview of how to process and use request parameters in Express.js. - Introduction to custom logic for processing request parameters. 17:40 📁 *Serving static files in Express.js* - Instructions on serving static files using Express.js. - Demonstrates how to use the "static" section in Express.js to serve static files. - Explanation of using the "use" middleware in Express.js for serving static files. 18:32 🔒 *Importance of using the correct package to avoid errors in Express.js* - Emphasis on using the correct packages, like "http" and "express", to avoid errors. - Explanation of how using incorrect packages can lead to mistakes in code. - Importance of using Express.js for building production websites. 19:31 🚫 *Avoiding mistakes when serving static files in Express.js* - Demonstrates the correct way to serve static files in Express.js to avoid mistakes. - Explanation of how placing files in the wrong directory can lead to errors. - Importance of correctly configuring static file serving in Express.js. Made with HARPA AI
@therealartist9
@therealartist9 9 ай бұрын
harpa ai teri ristedaar hai kya
@Polash72
@Polash72 11 ай бұрын
Guru ji o guru ji guru ji ap sunrahe ho ap kamal o guru ji😂😂😂 Love you new Python and JS courses.💖💗Golpi dil,💗 golapi dil.
@vanshgautam6833
@vanshgautam6833 10 ай бұрын
Best teacher on youtube
@victorb22622
@victorb22622 8 ай бұрын
11:06 इतनी सारी लाइन लिखने के बाद रिजल्ट क्या आ रहा है? ब्राउजर पर एक लाइन आ रही है।वो टू html page par लिखने से भी आ जाएगी ।whats real world use?
@T.Akshay_Pratap_Singh
@T.Akshay_Pratap_Singh 3 ай бұрын
19:16 nhii hogi serve package.json until or unless hum usse public folder k andhar na rakhein
@hemenlahkar
@hemenlahkar 11 ай бұрын
19:20 nahi hogi. Kyuki sirf 'public' name ke folder publically available hai
@NischitChettri
@NischitChettri 11 ай бұрын
19:18 package.json wont be display becuz, the [app.use(express.static('public'))] the file name is public inside the express.static
@funhourswithyash
@funhourswithyash 4 ай бұрын
nhi package.json serve nhi hogi but package.json ko public folder mai rakhoge to definatly packge.json bhi serverhogi 😎😎
@metacaptain5204
@metacaptain5204 5 ай бұрын
another day thanking this guy effort kia baat ha harry bhai genius
@MR.2005-y8w
@MR.2005-y8w 11 ай бұрын
nice! harry bhai dil se salute hai bhai
@hameedcodes
@hameedcodes 11 ай бұрын
you are the great sir ! i love you very very much i have downloaded all of your channel videos, every course .Sir please make one video on top website for web development jobs in 2024
@kiranmal8856
@kiranmal8856 11 ай бұрын
you are awesome break every concept in easier manner thank you so much for provide valuable content to us.
@Engineering_Unlocked
@Engineering_Unlocked 15 күн бұрын
No , Thank you so much bhaiya :) completed on 5/12/24
@technicalhacker6615
@technicalhacker6615 11 ай бұрын
hi harry bai kasy ho ap ka course kafi acha ap ky course bht achy hoty ha meri ap sy ek request ha ap jab agli bar course bnay gy to course ko live aa kr start krna
@Its__AnkitSahu
@Its__AnkitSahu 11 ай бұрын
19:12 nahi ho rahi hai
@prashikganer4820
@prashikganer4820 5 ай бұрын
No. package.json won't be served. It's outside public folder which is used to serve static files.
@SAPTARSHIDEY-sk6pz
@SAPTARSHIDEY-sk6pz 4 ай бұрын
harry bhayia , thank u so much for teaching this free. Love YOU!
@JetPen
@JetPen 5 ай бұрын
19:18 nhi hogi sir show package.json kyunki woh public file mein nhi hai
@arthur_bell
@arthur_bell 3 ай бұрын
19:16 nahi kyunke wo public folder mein nahi hai. #JavaScriptOP #SigmaBatchOP #HarryBhai
@subodhmule2011
@subodhmule2011 11 ай бұрын
Sir 2024 me web development ka scope rahega kya? Please Answer
@ayushdaharwal9274
@ayushdaharwal9274 11 ай бұрын
Harry bhai please make a video on how to use Microsoft word and how to make ppt, presentation etc. and features of Microsoft word and excels ...it's a humble request from 1st year btech student please ....
@AbhishekSingh-wb3lr
@AbhishekSingh-wb3lr 7 ай бұрын
Superbbb series most helpful one right now
@The-superhero758
@The-superhero758 11 ай бұрын
Sigma batch op Thanks Harry sir❤
@veryslon5104
@veryslon5104 11 ай бұрын
This is very wonderful tutorial. You best of the best.
@victorb22622
@victorb22622 8 ай бұрын
16:09 इससे क्या कोई पेमेंट गेटवे का ब्राउजर हो तो कोई ये slug कॉपी करके जो भी क्वेरी हो इनके पैरामीटर निकाल निकाल सकता है? Ager हा तो वो तो डेंजर हुआ
@cali_bob_official
@cali_bob_official 2 ай бұрын
Thank you 🙏 Harry sir 😊 you will get blessings from many students
@RobokiYT
@RobokiYT 9 ай бұрын
19:23, NO because package.json is not in public folder
@aliasghar_codes
@aliasghar_codes 11 ай бұрын
Sir please backend in depth seekhana because aap jesa youtube par koi nahi parhata or
@utkarsh_singh00930
@utkarsh_singh00930 11 ай бұрын
No package.json won't be served because it is not in public folder that the built in middleware is trying to make public..❤❤
@ProgrammerPurbali-pv7zx
@ProgrammerPurbali-pv7zx 7 ай бұрын
19:18 package.json wont be shown since it is not a public file
@shivcharanbarai
@shivcharanbarai 11 ай бұрын
That's the way you raise the bar like anything 😎🥰
@RahulKumar-lz9gn
@RahulKumar-lz9gn 9 ай бұрын
4:26 kya commedy hai bhai ki ...😁😁😁😁😁😁😎😎
@RoNit_
@RoNit_ 5 ай бұрын
The energy is too high ❤❤
@Unstoppable.Sakshi
@Unstoppable.Sakshi 11 ай бұрын
JavascriptOP! Harry Bhai
@am26453
@am26453 6 ай бұрын
very useful you are god of programming
@CosmoMaximilian
@CosmoMaximilian 9 ай бұрын
I am facing a issue that when I'm making changes ,it doesn't changes live without saving the js files repeatedly i have to press ctrl + s to save the file then its taking effect on reload . I have reinstalled nodemon after uninstalling then also ... what to do ... 🙏🙏🙏🙏🙏🙏🙏🙏
@sarthakkharade7112
@sarthakkharade7112 Күн бұрын
package.json nai hogi serve, kyuki public folder mein nai hai wo
@ahfvastav450
@ahfvastav450 10 ай бұрын
sigma batch op boltey😍😍😍😍😍😍😍😍😍😍
@deepanshugoel5632
@deepanshugoel5632 11 ай бұрын
harry bhai c++ ki bhi fresh videos lekar ayo jaise python ki hai c++ ki playlist ke liye wait kar raha hun hope you will comment as yes or no or not now
@abhaypratapsingh-xc5jt
@abhaypratapsingh-xc5jt 11 ай бұрын
#SigmaBatchOp🥶🥶🥶🥶🥶🥶 winters me type krne ka mazza hi kuch aur hai
@Conquertheworldwithlove.
@Conquertheworldwithlove. 8 ай бұрын
Yar wo server running at https wali line ke bad next line kaise likhi 1:29 min par
@sonubehera7882
@sonubehera7882 11 ай бұрын
I eagerly waiting for this topic
@progicraft
@progicraft 11 ай бұрын
19:19 no package.json file did not served reason. It is not in public folder
@shadikhusain1216
@shadikhusain1216 11 ай бұрын
Herry bhai advance level takk cover kerna plz.....❤🎉
@LsEagle18
@LsEagle18 2 ай бұрын
Thank you! I EXPRESS my sincere thanks to you! :)
@The-superhero758
@The-superhero758 11 ай бұрын
Sir 4k quality me videos upload kijiye
@lakhansharan-g7b
@lakhansharan-g7b 11 ай бұрын
19:23 (no) because it is not in public folder
@Anshuverma4674
@Anshuverma4674 11 ай бұрын
Jabb Harry bhai consistency nhi break kar rhe tho APNE KASE KAR SAKTE HH ❤❤🎉🎉
@MdKaif-io4pm
@MdKaif-io4pm 5 ай бұрын
Thank u so much bhai ,now i can say i know the Express littllebit
@sakalagamingyt3563
@sakalagamingyt3563 5 ай бұрын
Awesome tutorial Harry Bhai
@AN_Bhagat
@AN_Bhagat 11 ай бұрын
#SigmaBatchOp #Javascriptop #Harry sir❤❤
@Smile_please115
@Smile_please115 11 ай бұрын
Or kitna video aayega sir total kitna video hone wala hai
@amitraksharchakraborty8761
@amitraksharchakraborty8761 5 ай бұрын
backend ka notes website mya nehi hya??
@EmpoweredWithZarathos2314
@EmpoweredWithZarathos2314 11 ай бұрын
so informative
@minecatter94
@minecatter94 3 күн бұрын
very help full thanks❤‍🔥
@AmanTheDisciple
@AmanTheDisciple 4 ай бұрын
Duniya ko loot denge indians khatarnak developers bnke aise to XD
@artechgiants
@artechgiants 11 ай бұрын
#Javascript_op Awesome video 😎👍
@littlescientist9337
@littlescientist9337 11 ай бұрын
you are reached at Pakistan
@artechgiants
@artechgiants 11 ай бұрын
@@littlescientist9337 Yes, All software engineers like Harry's video
@HarshBait-g8p
@HarshBait-g8p 14 сағат бұрын
How do you practice of all of these things he thought
@amalmurikkoli7629
@amalmurikkoli7629 11 ай бұрын
Kya aap TypeScript sikha ne waale he future mein?
@sandeepwadhawan6084
@sandeepwadhawan6084 8 ай бұрын
Best intro to express🔥🔥
@GauravGupta-o6f
@GauravGupta-o6f 3 ай бұрын
javascript is gret harry bhai
@techiji1645
@techiji1645 5 ай бұрын
Harry bhai india World Cup jeet gyi SP UP me jeet gyi mirzapur 3 bhi aa gyi ssb ho gya pr aapka comeback kb hoga we need more videos like this
@soumadipghosh6521
@soumadipghosh6521 4 ай бұрын
Khatam hogya na ye series?
@sksahinparvej5500
@sksahinparvej5500 3 ай бұрын
​@@soumadipghosh6521 khatam nehi hua hai abhi bhi
@shantanu_saraf
@shantanu_saraf Ай бұрын
great explanation sir tysm
@mohdismail6145
@mohdismail6145 11 ай бұрын
19:22 No it will not as its not in public folder
@markiV643
@markiV643 3 ай бұрын
tamaam masala aa chuka hai harry bhai, hahaha
@ClipPodMania360
@ClipPodMania360 11 ай бұрын
Loving ur tutorials Can you bring tutorials on React Native
@beastadhiraj
@beastadhiraj 11 ай бұрын
Bro You are too AWS
@strangereditz229
@strangereditz229 11 ай бұрын
Sigma Batch OP ❤
@zuberkhan3050
@zuberkhan3050 11 ай бұрын
#SIGMA_BATCH_OP❤ #JAVASCRIPT_OP❤
@tiwarikanishk5366
@tiwarikanishk5366 10 ай бұрын
no package.json serve nhi hogi - isse to pura backend hi serve ho jayega agr express ne aise hi hone de dia to
@shabazuddin2854
@shabazuddin2854 8 ай бұрын
Love your videos👏👏👏
@code.priyam
@code.priyam 11 ай бұрын
19:22 nhi
@JetPen
@JetPen 5 ай бұрын
12:58 Nahi sir 😭 padosi ko hi toh nahi bulana, woh ye bhi dekhke boldega isse accha mera beta 4 html bana dega, same hi toh hai
@adeelnadeem5913
@adeelnadeem5913 11 ай бұрын
Love you harry Bhai Love from Pakistan
@Kirish-te7sm
@Kirish-te7sm 11 ай бұрын
Haris Bhai hum React, Tailwind, Python aur Django b cover krenge iss course mein?
@allenhuntsman
@allenhuntsman 11 ай бұрын
Mast course h Harry bhai
@chillff8823
@chillff8823 11 ай бұрын
Hey guys help me !! My nodemon is not working always says port already in use even though I change the port it says the same
@debendradash1524
@debendradash1524 11 ай бұрын
Harry Bhai vs code community edition ko kese use kare batao plss .
@AmanBansal-h2k
@AmanBansal-h2k 9 ай бұрын
package.json serve nhi hogi kyunki wo public file nhi hai
@Stark7_World
@Stark7_World 11 ай бұрын
Pakage.json serve nhi hogi
@ds.zubair
@ds.zubair 11 ай бұрын
Amazing web dev series
@250rihanbaig5
@250rihanbaig5 11 ай бұрын
Bhai please help me out choose between these two laptops 1. Lenovo IdeaPad gaming 3 Ryzen 5 6600H RTX 3050 TGP 85 watt 16 GB ram DDR5 4800 MHz Battery 60 wh 120 Hz screen refresh rate PRICE: 59K 2. HP victus 15 i5-12500H RTX 3050 TGP 75 watt 8 GB ram DDR4 3200 MHz Battery 70 whr 144 MHz screen refresh rate PRICE : 61.5 K
@YouTubech11
@YouTubech11 11 ай бұрын
1
@Nishant-xu1ns
@Nishant-xu1ns 8 ай бұрын
excellent video sir . keep it up
@AnilKumar-f4u7l
@AnilKumar-f4u7l 11 ай бұрын
#SigmaBatchOp Harry bhai, are you also going to teach typescript? (please...)
@hameedcodes
@hameedcodes 11 ай бұрын
sir make one video on difference between css and sass
@AryanMishra01
@AryanMishra01 11 ай бұрын
Harry Bhaiya op🎉
@gajukumar456
@gajukumar456 11 ай бұрын
@Harry bhai react ka video add nehi koro ge sigma web development course me ? 🤔
@Rohit_Rai901
@Rohit_Rai901 11 ай бұрын
React JS ka kiya howa🤷‍♂🤔🤷‍♂🤔
@gagantalukdar299
@gagantalukdar299 11 ай бұрын
Harry Bhai please aap C++ ki string video banaye na
@xboy2374
@xboy2374 11 ай бұрын
harry bhai mai public nahi kar pa rha hu koi bhi txt file ko koi solution bataoo
@prasannadeshpande877
@prasannadeshpande877 9 ай бұрын
harry bhai bar bar run krte wqt ye error aa rha ayar [nodemon] app crashed - waiting for file changes before starting...ye vala
@MohdQuasimteamH
@MohdQuasimteamH 9 ай бұрын
bhai mai jab nodemon main.js kr raha huu toh mera error aa raha h tumhare me bhi yhi problem h kya
@Conquertheworldwithlove.
@Conquertheworldwithlove. 8 ай бұрын
Ha 1:29 par server running at ke nad next line likh hi nahi pa raha
20.12.2024 BBNK BLAZOR  SERVER OBJECT-2
2:50:07
Seyyar Programcı
Рет қаралды 4
黑天使只对C罗有感觉#short #angel #clown
00:39
Super Beauty team
Рет қаралды 36 МЛН
Support each other🤝
00:31
ISSEI / いっせい
Рет қаралды 81 МЛН
Мясо вегана? 🧐 @Whatthefshow
01:01
История одного вокалиста
Рет қаралды 7 МЛН
How I would learn to code (If I could start over)
13:14
CodeWithHarry
Рет қаралды 232 М.
Learn Express JS In 35 Minutes
36:03
Web Dev Simplified
Рет қаралды 865 М.
What’s Up with Laravel? It’s Everywhere, and Here’s Why!
6:22
How to Make 2025 the Best Year of Your Life 🔥
8:49
CodeWithHarry
Рет қаралды 79 М.