Code for Interview
Code for Interview
  • 310
  • 5 250 849
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
czcams.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: czcams.com/video/pMR_48AF-A0/video.html
➡ JavaScript Projects Playlist: czcams.com/play/PL_6klLfS1WqHeBjBpJba1jl04UegweWsc.html
➡ React Projects Playlist: czcams.com/play/PL_6klLfS1WqHM02usd5VBnc0yempce2pt.html
➡ MERN Stack Projects Playlist: czcams.com/play/PL_6klLfS1WqEb6YL--KRviPGYAfx7AODH.html
➡ Next js Projects Playlist: czcams.com/play/PL_6klLfS1WqGskn7Mp9HYD-xrE30pmf9r.html
➡ Leet Code Questions Playlist: czcams.com/play/PL_6klLfS1WqF1n0GbPCqk0rPDFAu1dzXC.html
➡ Full Stack Projects Playlist (React & Spring Boot): czcams.com/play/PL_6klLfS1WqFi9710tOEs_b3Mco-_TecR.html
➡ Advance JavaScript Tutorial: czcams.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
zhlédnutí: 613

Video

LeetCode Problem: 189. Rotate Array | Java Solution
zhlĂ©dnutĂ­ 1,2KPƙed 2 měsĂ­ci
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 czcams.com/video/cORK0YESg9A/video.html 📕 Documentation/ References Other Videos: ➡ Java Projects Playlist: czcams.com/video/pMR_48AF-A0/video.html ➡ JavaScript Projects Playlist...
LeetCode Problem: 26. Remove Duplicates from Sorted Array | Java Solution
zhlĂ©dnutĂ­ 1,4KPƙed 2 měsĂ­ci
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
zhlĂ©dnutĂ­ 571Pƙed 2 měsĂ­ci
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 czcams.com/video/JmnAevHCwoY/video.html 📕 Documentation/ References Solution: codesandbox.io/p/sandbox/cu...
LeetCode Problem: 283. Move Zeroes | Java Solution
zhlĂ©dnutĂ­ 675Pƙed 3 měsĂ­ci
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 czcams.com/video/cORK0YESg9A/video.html 📕 Documentation/ References Other Videos: ➡ Java Projects Playlist: czcams.com/video/pMR_48AF-A0/video.html ➡ Ja...
LeetCode Problem: 162. Find Peak Element | Java Solution
zhlĂ©dnutĂ­ 624Pƙed 3 měsĂ­ci
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 czcams.com/video/cORK0YESg9A/video.html 📕 Documentation/ References Other Videos: ➡ Java Projects Playlist: czc...
React JS Machine Coding Interview Questions - How to force useEffect to run only once
zhlĂ©dnutĂ­ 448Pƙed 3 měsĂ­ci
Force useEffect to run only once đŸŽ„ Complete playlist of React Interview Questions czcams.com/video/JmnAevHCwoY/video.html 📕 Documentation/ References Other Videos: ➡ Java Projects Playlist: czcams.com/video/pMR_48AF-A0/video.html ➡ JavaScript Projects Playlist: czcams.com/play/PL_6klLfS1WqHeBjBpJba1jl04UegweWsc.html ➡ React Projects Playlist: czcams.com/play/PL_6klLfS1WqHM02usd5VBnc0yempce2pt.h...
React JS Machine Coding Interview Questions - useImperativeHandle with an Example
zhlĂ©dnutĂ­ 393Pƙed 3 měsĂ­ci
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 czcams.com/video/JmnAevHCwoY/video.html 📕 Documentation/ References Solution: codesandbox.io/p/sandbox/use-useimperative-l5wqns Doc: react.dev/reference/react/useImperativeHand...
Nodejs Tutorial 13: Events and Event Emitter Class | Advanced Node.js
zhlĂ©dnutĂ­ 529Pƙed 3 měsĂ­ci
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 czcams.com/play/PL_6klLfS1WqHJ9c4KBJNw3qKV0zYilwIk.html 📕 Documentation/ Refer...
React JS Machine Coding Interview Questions - Fetch and Display Images from NASA's API
zhlĂ©dnutĂ­ 421Pƙed 3 měsĂ­ci
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 czcams.com/video/JmnAevHCwoY/video.html 📕 Documentation/ References Question: docs.google.com/document/d/1LYXoyz9Ktwe6XZjZqUmQXqVdJkyVeBcFLhJ7_QBgPpA/edit?usp=sharing Solution: codesandbox.io/p/sandbox/d...
React JS Machine Coding Interview Questions - Display Todos in Table
zhlĂ©dnutĂ­ 435Pƙed 3 měsĂ­ci
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 czcams.com/video/JmnAevHCwoY/video.html 📕 Documentation/ References codesandbox.io/p/san...
Nodejs Tutorial 12: Phases of Event Loop in Node.js | Advanced Node.js
zhlĂ©dnutĂ­ 661Pƙed 3 měsĂ­ci
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 czcams.com/play/PL_6klLfS1WqHJ9c4KBJNw3qKV0zYilwIk.html 📕 Documentation/ References Event Loop Phases: nodejs.org/e...
LeetCode Problem: 231. Power of Two | Java Solution
zhlĂ©dnutĂ­ 528Pƙed 3 měsĂ­ci
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 czcams.com/video/cORK0YESg9A/video.html 📕 Documentation/ References Other Videos: ➡ Java Projects Playlist: czcams.com/video/pMR_48AF-A0/video.html ➡ JavaScript Proje...
React JS Machine Coding Interview Questions - Create a Pagination to split data on multiple pages
zhlĂ©dnutĂ­ 416Pƙed 3 měsĂ­ci
Create a pagination to split the data on multiple pages. đŸŽ„ Complete playlist of React Interview Questions czcams.com/video/JmnAevHCwoY/video.html 📕 Documentation/ References codesandbox.io/p/sandbox/custom-pagination-lyh4fv Other Videos: ➡ Java Projects Playlist: czcams.com/video/pMR_48AF-A0/video.html ➡ JavaScript Projects Playlist: czcams.com/play/PL_6klLfS1WqHeBjBpJba1jl04UegweWsc.html ➡ Rea...
Nodejs Tutorial 11: Event Loop in Node.js | Advanced Node.js
zhlĂ©dnutĂ­ 672Pƙed 3 měsĂ­ci
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 czcams.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: czcams.com/video/pMR_48AF-A0/vi...
React JS Machine Coding Interview Questions - Fetch Football matches from an API based on year
zhlĂ©dnutĂ­ 433Pƙed 3 měsĂ­ci
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
zhlĂ©dnutĂ­ 383Pƙed 3 měsĂ­ci
React JS Machine Coding Interview Questions - Create a Dynamic Location Selector
10/10 - Airline Management System | Java Project | Boarding Pass
zhlĂ©dnutĂ­ 9KPƙed 3 měsĂ­ci
10/10 - Airline Management System | Java Project | Boarding Pass
9/10 - Airline Management System | Java Project | Cancel Class
zhlĂ©dnutĂ­ 1,5KPƙed 3 měsĂ­ci
9/10 - Airline Management System | Java Project | Cancel Class
8/10 - Airline Management System | Java Project | Journey Details
zhlĂ©dnutĂ­ 1,1KPƙed 3 měsĂ­ci
8/10 - Airline Management System | Java Project | Journey Details
7/10 - Airline Management System | Java Project | Book Flight
zhlĂ©dnutĂ­ 2KPƙed 3 měsĂ­ci
7/10 - Airline Management System | Java Project | Book Flight
6/10 - Airline Management System | Java Project | Flight Info Class
zhlĂ©dnutĂ­ 1,5KPƙed 3 měsĂ­ci
6/10 - Airline Management System | Java Project | Flight Info Class
5/10 - Airline Management System | Java Project | Create Add Customer Class
zhlĂ©dnutĂ­ 1,8KPƙed 3 měsĂ­ci
5/10 - Airline Management System | Java Project | Create Add Customer Class
4/10 - Airline Management System | Java Project | Create Home Page
zhlĂ©dnutĂ­ 2,1KPƙed 3 měsĂ­ci
4/10 - Airline Management System | Java Project | Create Home Page
3/10 - Airline Management System | Java Project | JDBC Connectivity
zhlĂ©dnutĂ­ 3,4KPƙed 3 měsĂ­ci
3/10 - Airline Management System | Java Project | JDBC Connectivity
2/10 - Airline Management System | Java Project | Create Login Class
zhlĂ©dnutĂ­ 4,8KPƙed 3 měsĂ­ci
2/10 - Airline Management System | Java Project | Create Login Class
1/10 - Airline Management System | Java Project | Introduction
zhlĂ©dnutĂ­ 14KPƙed 3 měsĂ­ci
1/10 - Airline Management System | Java Project | Introduction
React JS Machine Coding Interview Questions - Navigation Component in React
zhlĂ©dnutĂ­ 844Pƙed 4 měsĂ­ci
React JS Machine Coding Interview Questions - Navigation Component in React
System Design: Design a Unique Id Generator
zhlĂ©dnutĂ­ 434Pƙed 4 měsĂ­ci
System Design: Design a Unique Id Generator
React JS Machine Coding Interview Questions - Searchable Dropdown Component in React
zhlĂ©dnutĂ­ 1KPƙed 4 měsĂ­ci
React JS Machine Coding Interview Questions - Searchable Dropdown Component in React

Komentáƙe

  • @LARAIBNAAZ-b9i
    @LARAIBNAAZ-b9i Pƙed 22 hodinami

    hello sir...i am not able to open boarding pass frame in home tab ...please tell the procedure

  • @induindu4952
    @induindu4952 Pƙed 23 hodinami

    java.sql.SQLException: Column count doesn't match value count at row 1

  • @lazy-codes
    @lazy-codes Pƙed dnem

    Widget-base WP Theme development Series: czcams.com/video/T-ZFL9pEpa8/video.html

  • @Unknown-jf8wf
    @Unknown-jf8wf Pƙed dnem

    Why make the title in English, if the video itself not in English? đŸ€·â€â™‚ïž

  • @khushi4020
    @khushi4020 Pƙed dnem

    I am unable to deploy it on render

  • @atulverma_up45
    @atulverma_up45 Pƙed dnem

    one of the top-notch lecture sir

  • @ayeshanadaf644
    @ayeshanadaf644 Pƙed 2 dny

    Hello Sir mere program me error aa rha hai.... Jab mai login pr click karti hu tb

  • @RishaHegde
    @RishaHegde Pƙed 2 dny

    At 38.33 minutes when you show '2' being printed after refresh on the terminal against console.log(request.params.id) mine prints '{id}'. I kept watching and researching but could not understand what I missed.

  • @shrutisinhaofficial
    @shrutisinhaofficial Pƙed 2 dny

    Bnana kaise hai project ye batao nh

  • @Lounge_951
    @Lounge_951 Pƙed 3 dny

    sir g maza aaaya ............................. love you

  • @rakeshkumarparida98
    @rakeshkumarparida98 Pƙed 3 dny

    bhai thank you so much , ky explanation hai bhai apka, I usually dont comment however the way you explain is just next level. Keep growing brother.Love from Odisha.

  • @pillosEnvironment
    @pillosEnvironment Pƙed 3 dny

    We are supporting❀. Don't stop to make these awesome and knowledgeable videos â€đŸŽ‰.

  • @parthbhawsar7465
    @parthbhawsar7465 Pƙed 3 dny

    bro increase text size please

  • @AzamatKhabibullaev-m2i

    basharenga tasho tepsin qanjiq

  • @abhisheksainani6625
    @abhisheksainani6625 Pƙed 4 dny

    class Solution{ public : int reverse(int x){ int ans =0; while(x !=0){ int temp = x%10; ans = ans*10 +temp; x= x/10; } return ans; } };

  • @swatipandey3870
    @swatipandey3870 Pƙed 4 dny

    Thank you sir

  • @Okaish64
    @Okaish64 Pƙed 4 dny

    Thank you so much Sir

  • @Ashish_pandey_1603
    @Ashish_pandey_1603 Pƙed 4 dny

    1,process.nextTick,2,5,3,close.callback

  • @NiteshSingh-dl5cv
    @NiteshSingh-dl5cv Pƙed 4 dny

    hi sir i follow your step and i got problem in time which shows where the msg ends not right down the msg please help me

  • @harshalborase1165
    @harshalborase1165 Pƙed 4 dny

    Bhai apka project bohot help kar rah hai muze coding mai improvement ke liye lekin ek concept mujhe sahi nahi lag rhi hai wo matlb aap frame close karne ke liye setVisible(false) use karte hai usse wo frame close hota hai aisa hume dikhta hai lekin wo code puri tarag se terinate nhi hota mai dekhta bhi hu aap setDefaultCloseOperation bhi nhi use karte. agar code terminate naa ho toh apke laptop ko bhi problem ho sakti hai isliye mai aapko suggesion deta hu ki aap setDefaultCloseOperation use kijiye and button ke liye System.exit(0); ye condition use kijiye matlb har baar aap close krenge toh puri tarah se close hoga baki aap bohot achha samjhate ho acchi codin skills hai aap mujhe bohot help kar rhe ho aap aise hi logo ko padhate raho isliye maine apko suggestion diya apka laptop achhese kaam kare isliye 😅😅

  • @prakashrathore4223
    @prakashrathore4223 Pƙed 4 dny

    Thank ❀

  • @Viral_zone.93
    @Viral_zone.93 Pƙed 4 dny

    Sir front image ki size full screen pr show nahi ho rahi Bohat choti dikh rahi hai

  • @S.journey-jx2yo
    @S.journey-jx2yo Pƙed 4 dny

    Y code ap ju kr rhy h Kya y hum is ki written text ki form my mil sakty h

  • @bedaprakashswain
    @bedaprakashswain Pƙed 5 dny

    Bro ResultSet rs = c.s.executeQuery(query); Error

  • @user-rr2sm8md7s
    @user-rr2sm8md7s Pƙed 5 dny

    Thanx bro learned alot from here specially MySQL 😊

  • @nitinthakur9141
    @nitinthakur9141 Pƙed 5 dny

    nice explanation sir

  • @S-OjhaAdityaGaurav
    @S-OjhaAdityaGaurav Pƙed 5 dny

    Bro How can i make it scrollable

  • @Patel_editing5
    @Patel_editing5 Pƙed 5 dny

    Thankyou sir there are no solution in java in CZcams thanks for providing in java language

  • @anujdhiman8512
    @anujdhiman8512 Pƙed 5 dny

    Why can't we link Node.Js API directly with libuv?

  • @harshalborase1165
    @harshalborase1165 Pƙed 5 dny

    Bhai mera databse connection and query sab sahi hai fir bhi database mai data nhi add ho rha hai kya ho rha hai kya exception hai kaise solve karu kuchh help kijiye na bhai at com.mysql.cj.jdbc.StatementImpl.executeLargeUpdate(StatementImpl.java:2084) at com.mysql.cj.jdbc.StatementImpl.executeUpdate(StatementImpl.java:1246) ye exception aa rhe hai

  • @starrudra6779
    @starrudra6779 Pƙed 5 dny

    provide source code, otherwise content is good

  • @java3021
    @java3021 Pƙed 5 dny

    2024 mei valid hai kya swing koi batayega ?

  • @Zaheer__zk40
    @Zaheer__zk40 Pƙed 6 dny

    process.nextTick 2 5 1 4 3 close callback

  • @rachitkothadia
    @rachitkothadia Pƙed 6 dny

    Bro after making Messenger.jsx i am geting this error 1 ERROR in child compilations (Use 'stats.children: true' resp. '--stats-children' for more details) webpack compiled with 6 errors what to do ?

    • @cmc6346
      @cmc6346 Pƙed 4 dny

      webpack --stats-children rm -rf node_modules rm package-lock.json npm install npx webpack --cache-clear try to run these commands in your terminal hope by using these commands your error get resolved. 😊

    • @rachitkothadia
      @rachitkothadia Pƙed 4 dny

      @@cmc6346 thanks bro have you completed this whole playlist and made a whatsapp clone for yourself?

  • @holeinsingularity03
    @holeinsingularity03 Pƙed 6 dny

    The issue , bundler error , here is the soln will help In API for loop while creating the axiosInstance just mention return axiosInstance...... It will work.

  • @shubhampk143_official
    @shubhampk143_official Pƙed 6 dny

    kuchh ideas dedo

  • @shubhampk143_official
    @shubhampk143_official Pƙed 6 dny

    bhai code kaha se uthau

  • @BharatKadam-hf2hr
    @BharatKadam-hf2hr Pƙed 6 dny

    Thanks brother

  • @NextBeautifulBangladesh

    Thanks for sharing your knowledge.

  • @lekharajpammar6596
    @lekharajpammar6596 Pƙed 7 dny

    I m getting error at last Unknown column pin in where clause

  • @urvashimeghani1104
    @urvashimeghani1104 Pƙed 7 dny

    Thankyou sir for sharing us very good project with lots of knowledge..and clear all the doubts simultaneously ❀ I have completed whole project with great enthusiasm Thanks a lot sir

  • @sakshimakhare6210
    @sakshimakhare6210 Pƙed 7 dny

    Hi. Sir. Meri last file Remove employee run ho rhi hai per screen pay output nahi show ho rha hai. Solution batao

  • @deshrajstudy3623
    @deshrajstudy3623 Pƙed 7 dny

    Why amount show in negative

    • @psrinu816
      @psrinu816 Pƙed 4 dny

      bro you got the solution ?

  • @mrudulakhedkar2155
    @mrudulakhedkar2155 Pƙed 7 dny

    after creating a file with .jsx extension it creates the javascript file and not react file, please guide

    • @just_playing524
      @just_playing524 Pƙed 7 dny

      Bro jsx extension is for react. React.js is a javascript library.

  • @AvikNayak_
    @AvikNayak_ Pƙed 7 dny

    Please make this in nextjs.

  • @anonymoustechdot9598
    @anonymoustechdot9598 Pƙed 7 dny

    sir what to do, i have dont have test paytm merchant id

  • @alishaagrahari8530
    @alishaagrahari8530 Pƙed 7 dny

    Sir my second page is not opening the login page ??? I went inside the class of the code which i want to run still it's showing the output of the first page.

  • @harisjamal545
    @harisjamal545 Pƙed 7 dny

    HI im getting error after 1:12:42 Uncaught runtime errors: ERROR [object Object] at handleError (localhost:3000/static/js/bundle.js:64487:58) at localhost:3000/static/js/bundle.js:64510:7 in the network it shows: signup Status 500 Type xhr Initiator api.js:74 and signup Status 204 Type Preflight all of this happens when i press the signup button

  • @Manu-ej2lu
    @Manu-ej2lu Pƙed 7 dny

    IDE konsa use kr rhe ?

  • @E_Commerce1396
    @E_Commerce1396 Pƙed 7 dny

    root&localhost???