Code for Interview
Code for Interview
  • 310
  • 5 570 073
Nodejs Tutorial 14: Making HTTP Request | Advanced Node.js
The http module in Node.js is a core module that provides the ability to create HTTP servers and make HTTP requests. It is built into Node.js, so you don't need to install it separately.
Topics Covered: HTTP and HTTPS Protocol
🎥 Complete playlist of Advance Nodejs Tutorial
th-cam.com/play/PL_6klLfS1WqHJ9c4KBJNw3qKV0zYilwIk.html
📕 Documentation/ References
---------------------------------------------------------------------------------------------
HTTP: nodejs.org/docs/latest/api/http.html
HTTPS: nodejs.org/docs/latest/api/https.html
---------------------------------------------------------------------------------------------
Other Videos:
➡ Java Projects Playlist: th-cam.com/video/pMR_48AF-A0/w-d-xo.html
➡ JavaScript Projects Playlist: th-cam.com/play/PL_6klLfS1WqHeBjBpJba1jl04UegweWsc.html
➡ React Projects Playlist: th-cam.com/play/PL_6klLfS1WqHM02usd5VBnc0yempce2pt.html
➡ MERN Stack Projects Playlist: th-cam.com/play/PL_6klLfS1WqEb6YL--KRviPGYAfx7AODH.html
➡ Next js Projects Playlist: th-cam.com/play/PL_6klLfS1WqGskn7Mp9HYD-xrE30pmf9r.html
➡ Leet Code Questions Playlist: th-cam.com/play/PL_6klLfS1WqF1n0GbPCqk0rPDFAu1dzXC.html
➡ Full Stack Projects Playlist (React & Spring Boot): th-cam.com/play/PL_6klLfS1WqFi9710tOEs_b3Mco-_TecR.html
➡ Advance JavaScript Tutorial: th-cam.com/play/PL_6klLfS1WqFSigvBa_PoS9NunY_b8N_P.html
🌎 Find Me Here:
Instagram: codeforinterview ( codeforinterview)
Telegram: codeforinterview (t.me/codeforinterview)
WhatsApp: Code for Interview (whatsapp.com/channel/0029VaAVs0l8KMqt7RlDoc1V)
#nodejs #nodejstutorial #nodejsdevelopment
มุมมอง: 886

วีดีโอ

LeetCode Problem: 189. Rotate Array | Java Solution
มุมมอง 1.7K3 หลายเดือนก่อน
Problem Statement: Given an integer array nums, rotate the array to the right by k steps, where k is non-negative. | Java Solution leetcode.com/problems/rotate-array/description 🎥 Complete playlist of LeetCode Problems th-cam.com/video/cORK0YESg9A/w-d-xo.html 📕 Documentation/ References Other Videos: ➡ Java Projects Playlist: th-cam.com/video/pMR_48AF-A0/w-d-xo.html ➡ JavaScript Projects Playli...
LeetCode Problem: 26. Remove Duplicates from Sorted Array | Java Solution
มุมมอง 2.1K4 หลายเดือนก่อน
Problem Statement: Given an integer array nums sorted in non-decreasing order, remove the duplicates in-place such that each unique element appears only once. The relative order of the elements should be kept the same. Then return the number of unique elements in nums. | Java Solution leetcode.com/problems/remove-duplicates-from-sorted-array/description/ 🎥 Complete playlist of LeetCode Problems...
React JS Machine Coding Interview Questions - Create a custom hook to call a GET API
มุมมอง 6834 หลายเดือนก่อน
Create a custom hook called useFetch that accepts a URL jsonplaceholder.typicode.com/users and returns the fetched data, loading state, and any error that occurred during the fetch operation. Use useEffect and useState in your implementation. 🎥 Complete playlist of React Interview Questions th-cam.com/video/JmnAevHCwoY/w-d-xo.html 📕 Documentation/ References Solution: codesandbox.io/p/sandbox/c...
LeetCode Problem: 283. Move Zeroes | Java Solution
มุมมอง 9574 หลายเดือนก่อน
Problem Statement: Given an integer array nums, move all 0's to the end of it while maintaining the relative order of the non-zero elements. | Java Solution leetcode.com/problems/move-zeroes/description/ 🎥 Complete playlist of LeetCode Problems th-cam.com/video/cORK0YESg9A/w-d-xo.html 📕 Documentation/ References Other Videos: ➡ Java Projects Playlist: th-cam.com/video/pMR_48AF-A0/w-d-xo.html ➡ ...
LeetCode Problem: 162. Find Peak Element | Java Solution
มุมมอง 8984 หลายเดือนก่อน
Problem Statement: Given a 0-indexed integer array nums, find a peak element, and return its index. If the array contains multiple peaks, return the index to any of the peaks. | Java Solution leetcode.com/problems/find-peak-element/description/ 🎥 Complete playlist of LeetCode Problems th-cam.com/video/cORK0YESg9A/w-d-xo.html 📕 Documentation/ References Other Videos: ➡ Java Projects Playlist: th...
React JS Machine Coding Interview Questions - How to force useEffect to run only once
มุมมอง 5244 หลายเดือนก่อน
Force useEffect to run only once 🎥 Complete playlist of React Interview Questions th-cam.com/video/JmnAevHCwoY/w-d-xo.html 📕 Documentation/ References Other Videos: ➡ Java Projects Playlist: th-cam.com/video/pMR_48AF-A0/w-d-xo.html ➡ JavaScript Projects Playlist: th-cam.com/play/PL_6klLfS1WqHeBjBpJba1jl04UegweWsc.html ➡ React Projects Playlist: th-cam.com/play/PL_6klLfS1WqHM02usd5VBnc0yempce2pt...
React JS Machine Coding Interview Questions - useImperativeHandle with an Example
มุมมอง 4554 หลายเดือนก่อน
This hook is useful when you want to expose some methods or properties from a child component to the parent component without exposing the entire child component instance. 🎥 Complete playlist of React Interview Questions th-cam.com/video/JmnAevHCwoY/w-d-xo.html 📕 Documentation/ References Solution: codesandbox.io/p/sandbox/use-useimperative-l5wqns Doc: react.dev/reference/react/useImperativeHan...
Nodejs Tutorial 13: Events and Event Emitter Class | Advanced Node.js
มุมมอง 7704 หลายเดือนก่อน
Much of the Node.js core API is built around an idiomatic asynchronous event-driven architecture in which certain kinds of objects (called "emitters") emit named events that cause Function objects ("listeners") to be called. Topics Covered: Events and Event Emitter class 🎥 Complete playlist of Advance Nodejs Tutorial th-cam.com/play/PL_6klLfS1WqHJ9c4KBJNw3qKV0zYilwIk.html 📕 Documentation/ Refer...
React JS Machine Coding Interview Questions - Fetch and Display Images from NASA's API
มุมมอง 4914 หลายเดือนก่อน
Learn how to create a React component that fetches image data from NASA's API, processes the response, and displays the images using `img` tags. 🎥 Complete playlist of React Interview Questions th-cam.com/video/JmnAevHCwoY/w-d-xo.html 📕 Documentation/ References Question: docs.google.com/document/d/1LYXoyz9Ktwe6XZjZqUmQXqVdJkyVeBcFLhJ7_QBgPpA/edit?usp=sharing Solution: codesandbox.io/p/sandbox/...
React JS Machine Coding Interview Questions - Display Todos in Table
มุมมอง 5184 หลายเดือนก่อน
Fetch a list of todos from an API and displays them in a paginated table with live search functionality. Each row includes an "Edit" button that allows inline editing of the "Title" and "Completed" fields, which changes to a "Done" button to save the changes. 🎥 Complete playlist of React Interview Questions th-cam.com/video/JmnAevHCwoY/w-d-xo.html 📕 Documentation/ References codesandbox.io/p/sa...
Nodejs Tutorial 12: Phases of Event Loop in Node.js | Advanced Node.js
มุมมอง 9834 หลายเดือนก่อน
The event loop is what allows Node.js to perform non-blocking I/O operations - despite the fact that JavaScript is single-threaded - by offloading operations to the system kernel whenever possible. Topics Covered: Phases of Event Loop 🎥 Complete playlist of Advance Nodejs Tutorial th-cam.com/play/PL_6klLfS1WqHJ9c4KBJNw3qKV0zYilwIk.html 📕 Documentation/ References Event Loop Phases: nodejs.org/e...
LeetCode Problem: 231. Power of Two | Java Solution
มุมมอง 6334 หลายเดือนก่อน
Given an integer n, return true if it is a power of two. Otherwise, return false. leetcode.com/problems/power-of-two leetcode.com/problems/power-of-three leetcode.com/problems/power-of-four 🎥 Complete playlist of LeetCode Problems th-cam.com/video/cORK0YESg9A/w-d-xo.html 📕 Documentation/ References Other Videos: ➡ Java Projects Playlist: th-cam.com/video/pMR_48AF-A0/w-d-xo.html ➡ JavaScript Pro...
React JS Machine Coding Interview Questions - Create a Pagination to split data on multiple pages
มุมมอง 4824 หลายเดือนก่อน
Create a pagination to split the data on multiple pages. 🎥 Complete playlist of React Interview Questions th-cam.com/video/JmnAevHCwoY/w-d-xo.html 📕 Documentation/ References codesandbox.io/p/sandbox/custom-pagination-lyh4fv Other Videos: ➡ Java Projects Playlist: th-cam.com/video/pMR_48AF-A0/w-d-xo.html ➡ JavaScript Projects Playlist: th-cam.com/play/PL_6klLfS1WqHeBjBpJba1jl04UegweWsc.html ➡ R...
Nodejs Tutorial 11: Event Loop in Node.js | Advanced Node.js
มุมมอง 9544 หลายเดือนก่อน
The event loop is what allows Node.js to perform non-blocking I/O operations Topics Covered: Event Loop 🎥 Complete playlist of Advance Nodejs Tutorial th-cam.com/play/PL_6klLfS1WqHJ9c4KBJNw3qKV0zYilwIk.html 📕 Documentation/ References Event Loop in Nodejs: nodejs.org/en/learn/asynchronous-work/event-loop-timers-and-nexttick Other Videos: ➡ Java Projects Playlist: th-cam.com/video/pMR_48AF-A0/w-...
React JS Machine Coding Interview Questions - Fetch Football matches from an API based on year
มุมมอง 5085 หลายเดือนก่อน
React JS Machine Coding Interview Questions - Fetch Football matches from an API based on year
React JS Machine Coding Interview Questions - Create a Dynamic Location Selector
มุมมอง 4495 หลายเดือนก่อน
React JS Machine Coding Interview Questions - Create a Dynamic Location Selector
10/10 - Airline Management System | Java Project | Boarding Pass
มุมมอง 14K5 หลายเดือนก่อน
10/10 - Airline Management System | Java Project | Boarding Pass
9/10 - Airline Management System | Java Project | Cancel Class
มุมมอง 2.3K5 หลายเดือนก่อน
9/10 - Airline Management System | Java Project | Cancel Class
8/10 - Airline Management System | Java Project | Journey Details
มุมมอง 1.7K5 หลายเดือนก่อน
8/10 - Airline Management System | Java Project | Journey Details
7/10 - Airline Management System | Java Project | Book Flight
มุมมอง 3K5 หลายเดือนก่อน
7/10 - Airline Management System | Java Project | Book Flight
6/10 - Airline Management System | Java Project | Flight Info Class
มุมมอง 2.3K5 หลายเดือนก่อน
6/10 - Airline Management System | Java Project | Flight Info Class
5/10 - Airline Management System | Java Project | Create Add Customer Class
มุมมอง 2.9K5 หลายเดือนก่อน
5/10 - Airline Management System | Java Project | Create Add Customer Class
4/10 - Airline Management System | Java Project | Create Home Page
มุมมอง 3.4K5 หลายเดือนก่อน
4/10 - Airline Management System | Java Project | Create Home Page
3/10 - Airline Management System | Java Project | JDBC Connectivity
มุมมอง 5K5 หลายเดือนก่อน
3/10 - Airline Management System | Java Project | JDBC Connectivity
2/10 - Airline Management System | Java Project | Create Login Class
มุมมอง 7K5 หลายเดือนก่อน
2/10 - Airline Management System | Java Project | Create Login Class
1/10 - Airline Management System | Java Project | Introduction
มุมมอง 20K5 หลายเดือนก่อน
1/10 - Airline Management System | Java Project | Introduction
React JS Machine Coding Interview Questions - Navigation Component in React
มุมมอง 9245 หลายเดือนก่อน
React JS Machine Coding Interview Questions - Navigation Component in React
System Design: Design a Unique Id Generator
มุมมอง 4945 หลายเดือนก่อน
System Design: Design a Unique Id Generator
React JS Machine Coding Interview Questions - Searchable Dropdown Component in React
มุมมอง 1.2K5 หลายเดือนก่อน
React JS Machine Coding Interview Questions - Searchable Dropdown Component in React

ความคิดเห็น

  • @Bhanupratap43281
    @Bhanupratap43281 5 ชั่วโมงที่ผ่านมา

    34:08

  • @chandankheto1500
    @chandankheto1500 6 ชั่วโมงที่ผ่านมา

    well explanation bro

  • @Bhanupratap43281
    @Bhanupratap43281 7 ชั่วโมงที่ผ่านมา

    29:40

  • @tusharjainchintu
    @tusharjainchintu 10 ชั่วโมงที่ผ่านมา

    bhai kitna complicated kardia navbar ko, simple btadeta bhai 30 min hogye ab tak navbar he ni bna had hai

  • @tusharjainchintu
    @tusharjainchintu 11 ชั่วโมงที่ผ่านมา

    bhai kitna basic se btate hoo...Great Work Are Are

  • @Ishit-m2s
    @Ishit-m2s วันที่ผ่านมา

    Hey can i use same port no?

    • @Ishit-m2s
      @Ishit-m2s วันที่ผ่านมา

      What's that local host I'd thing?

  • @maryamwaseem8633
    @maryamwaseem8633 วันที่ผ่านมา

    Mera docker install hgya lkn open nhi hrha error arha this app can't run on ur pc

  • @Salimabdulganiyu
    @Salimabdulganiyu วันที่ผ่านมา

    Sir pls can i have the link for the icons

  • @Bhanupratap43281
    @Bhanupratap43281 วันที่ผ่านมา

    0:53

  • @manubansal9197
    @manubansal9197 วันที่ผ่านมา

    java.lang.ClassNotFoundException: com.mysql.cj.jdbc.Driver bro i am getting this error... please help me

  • @GaneshSrinivas-y4l
    @GaneshSrinivas-y4l วันที่ผ่านมา

    Please put title in hindi if you are planning to put in hindi. Spanish, Chinese dont do this only Indians does this

  • @prachiwaghmode8978
    @prachiwaghmode8978 วันที่ผ่านมา

    Thank you so much ❤❤❤❤❤❤❤ helped alott❤❤❤

  • @shaikmohammedtalha5987
    @shaikmohammedtalha5987 วันที่ผ่านมา

    crazy bro !!!!

  • @Bhanupratap43281
    @Bhanupratap43281 2 วันที่ผ่านมา

    14:15

  • @MeenaGiranje
    @MeenaGiranje 2 วันที่ผ่านมา

    Sir login chya button vr click kelyavr invalid or correct asa kahich msg dhakvata nhj

  • @nileshmaane8545
    @nileshmaane8545 2 วันที่ผ่านมา

    Hello sir mera code alag alag karka run hora hai jaisa ke mein login class mein gaya tho login hota hai fir dusra class mein jaaka run karu tho dusra asa ho raha hai

  • @laxmangiranje3740
    @laxmangiranje3740 2 วันที่ผ่านมา

    Sir login button vr click kelyavr invalid asa message dhakvata nhj

  • @auroralshine6176
    @auroralshine6176 2 วันที่ผ่านมา

    this tutorial is great! how can i convert this java + mysql project into a deployable exe?

  • @11etrypranavganesh25
    @11etrypranavganesh25 2 วันที่ผ่านมา

    how to download rs2xml java file

  • @leftbrainletterings7199
    @leftbrainletterings7199 2 วันที่ผ่านมา

    PL. make a playlist for learning Node.js from basics

  • @Abubakar_patel_3
    @Abubakar_patel_3 2 วันที่ผ่านมา

    Background music 🎶 🐕 dog 😂

  • @codebits8924
    @codebits8924 2 วันที่ผ่านมา

    java.sql.SQLException: Statement.executeQuery() cannot issue statements that do not produce result sets.

  • @nithenbains
    @nithenbains 2 วันที่ผ่านมา

    Thanks for this detailed explations but if you also do code and implement this in node js so it might be better than this

  • @satyamkushwaha-kq2sx
    @satyamkushwaha-kq2sx 3 วันที่ผ่านมา

    Bbai ye kis app pe coding ki hai

  • @Archisha_aary00
    @Archisha_aary00 3 วันที่ผ่านมา

    Thankyou soooo muchhh for this playlist❤

  • @aryadandnaik9425
    @aryadandnaik9425 3 วันที่ผ่านมา

    Bhaiya can you help us plzz it is not working properly

  • @shubhamhande4416
    @shubhamhande4416 3 วันที่ผ่านมา

    login me sign in krne ke bad Can not issue NULL query aisa aa raha hai

  • @Bhanupratap43281
    @Bhanupratap43281 3 วันที่ผ่านมา

    20:23

  • @AmitSingh-tq1lr
    @AmitSingh-tq1lr 3 วันที่ผ่านมา

    java.sql.SQLSyntaxErrorException: Unknown column 'question' in 'field list'

  • @Prince.AlBalushi
    @Prince.AlBalushi 4 วันที่ผ่านมา

    bhai jan gmail k compose mail k code chahiye

  • @sritsrit3733
    @sritsrit3733 4 วันที่ผ่านมา

    gud job bro ......keep on making .i learnt a lot by these ones

  • @tinkugupta1
    @tinkugupta1 4 วันที่ผ่านมา

    more questions

  • @hemchauhan5852
    @hemchauhan5852 4 วันที่ผ่านมา

    Why is there an error in login class Where I used conn class ?? Please reply

  • @Sde660
    @Sde660 4 วันที่ผ่านมา

    Hellooo sirrrr

  • @Sde660
    @Sde660 4 วันที่ผ่านมา

    Heppi sirr

  • @Sde660
    @Sde660 4 วันที่ผ่านมา

    Sir I am getting error

  • @11etrypranavganesh25
    @11etrypranavganesh25 5 วันที่ผ่านมา

    Sir I am not havning any kind of error but my is not stored in my SQL Database pls help sir

  • @navinsingh2784
    @navinsingh2784 5 วันที่ผ่านมา

    Using Netbeans 23 frame is not visible, no error just frame is not visible

  • @thekociltd.7534
    @thekociltd.7534 6 วันที่ผ่านมา

    please provide me the UML design of this project.

  • @thekociltd.7534
    @thekociltd.7534 6 วันที่ผ่านมา

    please provide me the UML design of this project.

  • @shivambln
    @shivambln 6 วันที่ผ่านมา

    Bro in other videos everywhere request comes in call stack which is stack but you said request comes in event queue which is queue

  • @shivambln
    @shivambln 6 วันที่ผ่านมา

    Bhai ye batao na javascript bydefault synchronous hai wherea as nodejs is asynchronous in nature

  • @shivambln
    @shivambln 6 วันที่ผ่านมา

    Bhai aapne kaafi doubt clear krdeye jo related to libuv

  • @mr.kasyapsandesh
    @mr.kasyapsandesh 6 วันที่ผ่านมา

    How to upload in db and acess from db.

  • @software_engineer7705
    @software_engineer7705 7 วันที่ผ่านมา

    Thanku so much for the playlist 😊

  • @sunehrititli..1219
    @sunehrititli..1219 7 วันที่ผ่านมา

    Sir getting error at JLable please give reply

  • @sritsrit3733
    @sritsrit3733 7 วันที่ผ่านมา

    iam very grateful to u bro for this project....keep on doing

  • @Bhanupratap43281
    @Bhanupratap43281 7 วันที่ผ่านมา

    7:11

  • @ArjunChaurasiyaNow
    @ArjunChaurasiyaNow 7 วันที่ผ่านมา

    Subscribe done bro❤

  • @bansalvipul31
    @bansalvipul31 7 วันที่ผ่านมา

    Bhai coding bhi देखिए