Code for Interview
Code for Interview
  • 310
  • 5 427 120
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
ua-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: ua-cam.com/video/pMR_48AF-A0/v-deo.html
➡ JavaScript Projects Playlist: ua-cam.com/play/PL_6klLfS1WqHeBjBpJba1jl04UegweWsc.html
➡ React Projects Playlist: ua-cam.com/play/PL_6klLfS1WqHM02usd5VBnc0yempce2pt.html
➡ MERN Stack Projects Playlist: ua-cam.com/play/PL_6klLfS1WqEb6YL--KRviPGYAfx7AODH.html
➡ Next js Projects Playlist: ua-cam.com/play/PL_6klLfS1WqGskn7Mp9HYD-xrE30pmf9r.html
➡ Leet Code Questions Playlist: ua-cam.com/play/PL_6klLfS1WqF1n0GbPCqk0rPDFAu1dzXC.html
➡ Full Stack Projects Playlist (React & Spring Boot): ua-cam.com/play/PL_6klLfS1WqFi9710tOEs_b3Mco-_TecR.html
➡ Advance JavaScript Tutorial: ua-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
Переглядів: 793

Відео

LeetCode Problem: 189. Rotate Array | Java Solution
Переглядів 1,5 тис.3 місяці тому
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 ua-cam.com/video/cORK0YESg9A/v-deo.html 📕 Documentation/ References Other Videos: ➡ Java Projects Playlist: ua-cam.com/video/pMR_48AF-A0/v-deo.html ➡ JavaScript Projects Playlist...
LeetCode Problem: 26. Remove Duplicates from Sorted Array | Java Solution
Переглядів 1,8 тис.3 місяці тому
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
Переглядів 6323 місяці тому
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 ua-cam.com/video/JmnAevHCwoY/v-deo.html 📕 Documentation/ References Solution: codesandbox.io/p/sandbox/cu...
LeetCode Problem: 283. Move Zeroes | Java Solution
Переглядів 8273 місяці тому
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 ua-cam.com/video/cORK0YESg9A/v-deo.html 📕 Documentation/ References Other Videos: ➡ Java Projects Playlist: ua-cam.com/video/pMR_48AF-A0/v-deo.html ➡ Ja...
LeetCode Problem: 162. Find Peak Element | Java Solution
Переглядів 7843 місяці тому
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 ua-cam.com/video/cORK0YESg9A/v-deo.html 📕 Documentation/ References Other Videos: ➡ Java Projects Playlist: ua-...
React JS Machine Coding Interview Questions - How to force useEffect to run only once
Переглядів 4913 місяці тому
Force useEffect to run only once 🎥 Complete playlist of React Interview Questions ua-cam.com/video/JmnAevHCwoY/v-deo.html 📕 Documentation/ References Other Videos: ➡ Java Projects Playlist: ua-cam.com/video/pMR_48AF-A0/v-deo.html ➡ JavaScript Projects Playlist: ua-cam.com/play/PL_6klLfS1WqHeBjBpJba1jl04UegweWsc.html ➡ React Projects Playlist: ua-cam.com/play/PL_6klLfS1WqHM02usd5VBnc0yempce2pt.h...
React JS Machine Coding Interview Questions - useImperativeHandle with an Example
Переглядів 4273 місяці тому
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 ua-cam.com/video/JmnAevHCwoY/v-deo.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
Переглядів 6784 місяці тому
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 ua-cam.com/play/PL_6klLfS1WqHJ9c4KBJNw3qKV0zYilwIk.html 📕 Documentation/ Refer...
React JS Machine Coding Interview Questions - Fetch and Display Images from NASA's API
Переглядів 4694 місяці тому
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 ua-cam.com/video/JmnAevHCwoY/v-deo.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
Переглядів 4864 місяці тому
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 ua-cam.com/video/JmnAevHCwoY/v-deo.html 📕 Documentation/ References codesandbox.io/p/san...
Nodejs Tutorial 12: Phases of Event Loop in Node.js | Advanced Node.js
Переглядів 8724 місяці тому
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 ua-cam.com/play/PL_6klLfS1WqHJ9c4KBJNw3qKV0zYilwIk.html 📕 Documentation/ References Event Loop Phases: nodejs.org/e...
LeetCode Problem: 231. Power of Two | Java Solution
Переглядів 5894 місяці тому
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 ua-cam.com/video/cORK0YESg9A/v-deo.html 📕 Documentation/ References Other Videos: ➡ Java Projects Playlist: ua-cam.com/video/pMR_48AF-A0/v-deo.html ➡ JavaScript Proje...
React JS Machine Coding Interview Questions - Create a Pagination to split data on multiple pages
Переглядів 4604 місяці тому
Create a pagination to split the data on multiple pages. 🎥 Complete playlist of React Interview Questions ua-cam.com/video/JmnAevHCwoY/v-deo.html 📕 Documentation/ References codesandbox.io/p/sandbox/custom-pagination-lyh4fv Other Videos: ➡ Java Projects Playlist: ua-cam.com/video/pMR_48AF-A0/v-deo.html ➡ JavaScript Projects Playlist: ua-cam.com/play/PL_6klLfS1WqHeBjBpJba1jl04UegweWsc.html ➡ Rea...
Nodejs Tutorial 11: Event Loop in Node.js | Advanced Node.js
Переглядів 8474 місяці тому
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 ua-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: ua-cam.com/video/pMR_48AF-A0/v-...
React JS Machine Coding Interview Questions - Fetch Football matches from an API based on year
Переглядів 4874 місяці тому
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
Переглядів 4234 місяці тому
React JS Machine Coding Interview Questions - Create a Dynamic Location Selector
10/10 - Airline Management System | Java Project | Boarding Pass
Переглядів 12 тис.4 місяці тому
10/10 - Airline Management System | Java Project | Boarding Pass
9/10 - Airline Management System | Java Project | Cancel Class
Переглядів 1,9 тис.4 місяці тому
9/10 - Airline Management System | Java Project | Cancel Class
8/10 - Airline Management System | Java Project | Journey Details
Переглядів 1,4 тис.4 місяці тому
8/10 - Airline Management System | Java Project | Journey Details
7/10 - Airline Management System | Java Project | Book Flight
Переглядів 2,5 тис.4 місяці тому
7/10 - Airline Management System | Java Project | Book Flight
6/10 - Airline Management System | Java Project | Flight Info Class
Переглядів 1,9 тис.4 місяці тому
6/10 - Airline Management System | Java Project | Flight Info Class
5/10 - Airline Management System | Java Project | Create Add Customer Class
Переглядів 2,4 тис.4 місяці тому
5/10 - Airline Management System | Java Project | Create Add Customer Class
4/10 - Airline Management System | Java Project | Create Home Page
Переглядів 2,8 тис.4 місяці тому
4/10 - Airline Management System | Java Project | Create Home Page
3/10 - Airline Management System | Java Project | JDBC Connectivity
Переглядів 4,5 тис.4 місяці тому
3/10 - Airline Management System | Java Project | JDBC Connectivity
2/10 - Airline Management System | Java Project | Create Login Class
Переглядів 6 тис.4 місяці тому
2/10 - Airline Management System | Java Project | Create Login Class
1/10 - Airline Management System | Java Project | Introduction
Переглядів 17 тис.4 місяці тому
1/10 - Airline Management System | Java Project | Introduction
React JS Machine Coding Interview Questions - Navigation Component in React
Переглядів 8955 місяців тому
React JS Machine Coding Interview Questions - Navigation Component in React
System Design: Design a Unique Id Generator
Переглядів 4665 місяців тому
System Design: Design a Unique Id Generator
React JS Machine Coding Interview Questions - Searchable Dropdown Component in React
Переглядів 1,1 тис.5 місяців тому
React JS Machine Coding Interview Questions - Searchable Dropdown Component in React

КОМЕНТАРІ

  • @tanvipatel1689
    @tanvipatel1689 3 години тому

    It's give an error while I connect database

  • @asproop
    @asproop 3 години тому

    Will it work in java latest version

  • @colorsoflife5889
    @colorsoflife5889 5 годин тому

    Very nice I've done todo list help of your vedio ❤

  • @mohd.talib1812
    @mohd.talib1812 10 годин тому

    me jb bhi dashboard ko run krta hu to first page hi open hota h,plz tell me sir

  • @Virtualexist
    @Virtualexist 10 годин тому

    Gave up on last video yaar. So sad, wasted my time in this. Pata nahi kya wajah s paymentGateway wali request deny ho rahi h front-end s backend k liye. ERR_CONNECTION_REFUSED a raha hai, bohot debug kar lia 3 din s. :( CORS use kia hai. log in sign up chalra h accha. Lekin ye payment gateway wali axios call reject ho rahi hai baar baar, ab thak gaya main. Koi discussion k liye bhi nahi h. :(

  • @pradeeppyana1399
    @pradeeppyana1399 11 годин тому

    Bhai koi new java project kra do ..... Kyuki aap java project wali video kafi old ho gyi hai.... To kafi version bhi update ho gye hai to project banae m problem hoti h.... Agar aap kuch new project kra do to kafi help ho jayegi

  • @Goswami1404
    @Goswami1404 11 годин тому

    Hlo. Same to same. Code run krne ke bad bi error aa rha hai please my problem selusion

  • @haqseartist3979
    @haqseartist3979 15 годин тому

    Hey can you put a video to explain the working or flowchart of this application.Or can you suggest any article for this project.

  • @michaelcampechano323
    @michaelcampechano323 17 годин тому

    thanks bro, duro

  • @Virtualexist
    @Virtualexist День тому

    Hi @codeforinterview any reason why my request.body is not containing the CHECKSUMHASH key in the paytmresponse function? I am stuck since yesterday at this.

  • @sanaParveen-bq7vf
    @sanaParveen-bq7vf День тому

    Second vedio ka he output aarha hai..login page nhi open ho rha hai? Jo image diye the wahi show kr rha hai

  • @yagniknakum444
    @yagniknakum444 День тому

    Project report hotel management system

  • @roshanigaikwad-5048
    @roshanigaikwad-5048 2 дні тому

    Sir database show nhi kr rahahai

  • @ZiyaShaikh-g4u
    @ZiyaShaikh-g4u 2 дні тому

    Hiii sir...i have made this project but my form number is not showing in the database it is showing 0 only but there is no error in the whole code and the information for specific formno is getting stored bt not the form number please solve my error i have to submit my project it's urgent

  • @amitdoifode9679
    @amitdoifode9679 2 дні тому

    Hello Sir, i am amit, am watching your all videos on this project So Can't you convert this project to a file and make it on local host except netbeans? Because i am a student and my placement incharge ask to me plz convert this project local host.. So how i do..

  • @everydaywithshivam
    @everydaywithshivam 2 дні тому

    maja aa gya bhai

  • @skg103
    @skg103 2 дні тому

    how can we make vioce call and video call features in this can you give code of it

  • @AdityaNarayanGoswami-g6u
    @AdityaNarayanGoswami-g6u 2 дні тому

    There is an issue with the image url

  • @Turk_Saifu
    @Turk_Saifu 2 дні тому

    is it beginner friendly project i mean i know basic java

  • @ShaikhNaziya-qb7ds
    @ShaikhNaziya-qb7ds 2 дні тому

    I did this entire project and it was successfully run. Thank you so much sir.😊

  • @somyajain1683
    @somyajain1683 3 дні тому

    Bhaiya mene pura code same likha h pr error aa rha h run krne pr screen white ho rhi h kuch show nhi horha plz help plz reply , how can i contact you I am not using Instagram

  • @Music_with_Raj
    @Music_with_Raj 3 дні тому

    best Awesome Bro !

  • @sivakiruba3678
    @sivakiruba3678 3 дні тому

    DataBase and NetBeans Not Connecting properly what can am i do

  • @AnamikaPrajapatiqueen
    @AnamikaPrajapatiqueen 3 дні тому

    Sir SCALE _DEFAULT me error arah hai

  • @rverma7309
    @rverma7309 4 дні тому

    I have an error when i enter the data in employee form .... Error is Java.awt.EventDispatchThread.run(EventDispatchThread.java) Plz response

  • @sritsrit3733
    @sritsrit3733 4 дні тому

    Tq bro for ur nice explanation

  • @rajputirakt
    @rajputirakt 4 дні тому

    Eska synopsis kaha milega bhaiya😢😢

  • @snehaldusane2543
    @snehaldusane2543 4 дні тому

    What you have used for adding image where youvare adding details name ,adhar etc

  • @sujaygowda4358
    @sujaygowda4358 4 дні тому

    how did you done signup I mean How did create possword and user name

  • @Life_Through_Samarth_eyes
    @Life_Through_Samarth_eyes 4 дні тому

    plz explain why did we use jar file and why was it important and significance

  • @Life_Through_Samarth_eyes
    @Life_Through_Samarth_eyes 4 дні тому

    plz explain why did we use jar file what was the need of using it.

  • @adarsh9631
    @adarsh9631 5 днів тому

    Awesome content... best video on mern covered everything!!❤

  • @alishapsahoo1227
    @alishapsahoo1227 5 днів тому

    Bhaiya apki hasi bahot pyari hai🤭

  • @SanaShaik-r9q
    @SanaShaik-r9q 5 днів тому

    i dont have icons in source packages how can i add picture then

  • @AbhinavSrivastava-kt6jh
    @AbhinavSrivastava-kt6jh 5 днів тому

    Anyone host this project ??

  • @AbhinavSrivastava-kt6jh
    @AbhinavSrivastava-kt6jh 5 днів тому

    Bro whatsaap clone ka host karne ka tuturial banadena

  • @Ashutoshkumarparashari
    @Ashutoshkumarparashari 5 днів тому

    Can I use this project as a final year project?

  • @sritsrit3733
    @sritsrit3733 6 днів тому

    Gud explanation bro🎉🎉

  • @AsifKhan-n6c4u
    @AsifKhan-n6c4u 6 днів тому

    hello i am facing issue with styled in my case css is not getting applied. i have debugged and got to know that MUI v5, the styled utility was moved out of @mui/material and into @mui/system but even now its not working.what to do ?

  • @RabiyaBegum-u2p
    @RabiyaBegum-u2p 6 днів тому

    Sir it's running but the image is not visible 😭

  • @shraddhadubey7114
    @shraddhadubey7114 7 днів тому

    I am your new subscriber bhaiya buth buth aachi simple explanation very much easy method ur are the best❤🫂

  • @safalmondal4734
    @safalmondal4734 7 днів тому

    Please give us the repo link or source code link

  • @pawanrajput5957
    @pawanrajput5957 7 днів тому

    Please sir provide dfd in this project with proper explanation

  • @sritsrit3733
    @sritsrit3733 8 днів тому

    🎉🎉🎉

  • @rahulrj5884
    @rahulrj5884 8 днів тому

    Mujhe aaj pucha same maine aadha kiya pause ka ligic nahi samjha

  • @Learnprogramming-q7f
    @Learnprogramming-q7f 8 днів тому

    Thank you bro

  • @tanvipatel1689
    @tanvipatel1689 8 днів тому

    It's give error to sign in with Google plz help

  • @vkknowledge247
    @vkknowledge247 8 днів тому

    Sir something fault in your website. Customer should be confidential. Because hotel never show the customer identity. It may be dangerous for customer if we want to hide the customer if how we can hide please make a video on it

  • @onlyfrommypointofview6017
    @onlyfrommypointofview6017 9 днів тому

    I have weird question: If everything in JS is object and above object there is null, but we know null is object as typeof null is object. so is it an infinite loop of objects 😂

  • @AAI_KRUPA_CREATION
    @AAI_KRUPA_CREATION 9 днів тому

    Code pura error vala hai sab kuch run hoga lekin msg send hi nahi hoga