Good Morning guys :) Aj ka video is very useful and informative hai about What Exactly Streaming is? Plz LIKE and SHARE the video with your friends ok :) and for more plz 🔴 Follow me on Instagram: instagram.com/vinodthapa55/
Hello vinod you are just awesome..... Can you give us a video where you can show how to build Amazon clone with react JS....like clever programmer..... because we understand properly when you explain in Hindi..... Your style of explaining is damn awesome bro..... please 🤞
instead of res.write , we should have used res.append (i think so), bcaz when another stream of data will come then the previous data will be overwritten.
@@datastructure_solved5839 HI, Like event.on("xyz", ()=>{}), we use "xyz" as event name and we call that event using event.emit("xyz"); So i think the same way we are using server.on("request".....). But there is no calling to "request". Can u explain me then what does "server.on" do? Below is the code. server.on("request", (req, res) => { var fs = require("fs"); fs.readFile("input.txt", (err, data) => { if(err) {return console.error(err);} res.end(data.toString()); }); }); Thnk u.
a big request of your fan . I watched webdev simplified on Zoom clone but it had some issues. Pls show us a live video on how to do video live stream like zoom or Google meet with screen sharing option, Recording feature and user login system authorization. Thankyou
sir have issue in res.write(chunkdata) i follow u step by step -------->>>>>>>> E: ode\streamModule\index.js:11 res.write(chunkdata); ^ ReferenceError: res is not defined at ReadStream. (E: ode\streamModule\index.js:11:5)
sir me pura 4 din laga diya akhir ye streams and buffers hai kya kuch samaj nahi aa raha tha but apki video dekhane ke bad concepts clear hogaya but doubt abhi bhi hai kya node.js ka streams and buffers ka official documentation pura samjna jarrori hai as a developer ?
thapa sir if I use stream method to upload video on server and from server to cloud storage then how i can generate default thumbnail from stream video?
Alert📢: there is a small mistake. Thapa Technical didn't use encoding in same line after the mentioned file path. Without encoding this code will run perfectly for small files but if you use larger files then page will keep loading.
we have made server.on(request , (err, data). but we are not triggering the request event, still it gives us data in browser.. can anyone solve this confusion of mine?
Bro one thing, The title of the video shows buffer, writable steam but you didn't talk about it and on the other hand, it does employ the full feature of steams. Please either choose correct titles or give full knowledge which is mentioned.
Hey Thapa, I want to create a live broadcasting application. Where I will stream my screen and video and the users can see the live video. u can say like a cricket match. and I don't want the user's video. I will communicate with them through message. Can you guide me on what should I do?
const fs = require('fs'); // Create a readable stream const readableStream = fs.createReadStream('input.txt'); // Create a writable stream const writableStream = fs.createWriteStream('output.txt'); // Pipe the data from the readable stream to the writable stream readableStream.pipe(writableStream); // Handle 'finish' event when all data has been written writableStream.on('finish', () => { console.log('Data has been written to output.txt'); });
Bro I have Telegram bot that streams music in Telegram voice chat and iam using nodesoursce setup v.16x in that bro can u please suggest me which version is good for that kinda stuff????
.on se to event define hote h n aur .emit se fire hote h aapne to kahi bhi .emit use nhi kiya naahi aapne event's ko require kiya fir kaise ye .on se event call ho gya plz anyone tell me yaar 😕😕
Mate I think this is my third time can you plz revert back of I can use the contents and convert it into my regional language so it will help the needy You may ask what for me ? (You may suggest it )
Good Morning guys :) Aj ka video is very useful and informative hai about What Exactly Streaming is? Plz LIKE and SHARE the video with your friends ok :) and for more plz 🔴 Follow me on Instagram: instagram.com/vinodthapa55/
Bhai Android Studio par kab video banaaoge we all are waiting.
nice video sir, but rstream not defined ka error aa raha hai... please help
video axha lga . like kr dia. 6:05 :D
but you didnot reply to comment for any doubts
bhai aapko bahut deep knowledge hai JavaSCript ki. Thnk you for sharing your knowledge with us :))
Itne details me to google bhi nhi batata...Your tutorials helps me a lot ...Thank you bhai
not enjoyment and not sorrow only see awesome ,fantastic nodejs video
Bhai apki saari videos is best.
Hello vinod you are just awesome..... Can you give us a video where you can show how to build Amazon clone with react JS....like clever programmer..... because we understand properly when you explain in Hindi..... Your style of explaining is damn awesome bro..... please 🤞
your teaching method is❤❤❤❤👏👏👏👏❤❤❤❤
underrated channel
amazing video! very informative and in depth. Brother, can you please make a roadmap for how to learn SERVER-SIDE-PROGRAMMING?
Bhaiya Ji SuperHit😊👏👏🙏
It is a best things you share sir..❤
instead of res.write , we should have used res.append (i think so), bcaz when another stream of data will come then the previous data will be overwritten.
but i think , we use append for adding new data not for overwriting.
No bro it's showing error
@@Deride407 i also realised that
I enjoyed a lot in this video thanks sir
Thank you so much ☺️
You said that streams are object of EventEmitter but your are not creating any object of EventEmitter why ?
not sure but i guess its there when we created , rstream = fs.ReadStream();
@@datastructure_solved5839 HI,
Like event.on("xyz", ()=>{}), we use "xyz" as event name and we call that event using event.emit("xyz");
So i think the same way we are using server.on("request".....). But there is no calling to "request". Can u explain me then what does "server.on" do? Below is the code.
server.on("request", (req, res) => {
var fs = require("fs");
fs.readFile("input.txt", (err, data) => {
if(err) {return console.error(err);}
res.end(data.toString());
});
});
Thnk u.
a big request of your fan . I watched webdev simplified on Zoom clone but it had some issues. Pls show us a live video on how to do video live stream like zoom or Google meet with screen sharing option, Recording feature and user login system authorization. Thankyou
.on method to EventEmitter class ka method h ..to... server object on method ko kayse access kiya..???
Same question too....!!
Vinod Bhai is the best
@8.15 how did you add the shortcut. is it the feature of vscode ?, did you install any plugin in it >?
install node snipets
@@coderunstudio thanku bro for your help
use NODE-SNIPPET , 2ND option in VS-CODE
This tutorial is very awesome
sir...please make video on payment gateway ...
this course in very good
This was a pretty awsome video, can u make a video on streaming sql database using sequelize
superb video. thanks
sir have issue in res.write(chunkdata) i follow u step by step
-------->>>>>>>>
E:
ode\streamModule\index.js:11
res.write(chunkdata);
^
ReferenceError: res is not defined
at ReadStream. (E:
ode\streamModule\index.js:11:5)
Server.on('request'
Yea request kaha sea aya ??
Or yea on exactly hea kia ??
Plz plz make mongodb tutorial with node js after this...🙏🙏🙏🙏
jaroor
@@DigitalAman tu kyu reply de raha hai🤣😂😂
sir me pura 4 din laga diya akhir ye streams and buffers hai kya kuch samaj nahi aa raha tha but apki video dekhane ke bad concepts clear hogaya but doubt abhi bhi hai kya node.js ka streams and buffers ka official documentation pura samjna jarrori hai as a developer ?
thapa sir if I use stream method to upload video on server and from server to cloud storage then how i can generate default thumbnail from stream video?
Nicely explained sir
nice work lad.....
Issue I written code but answer is not showing in local host server
what is the name of the NODE-JS SNIPPET u just used in the 8:11 min bhai ?
*same Question brother. ***
use NODE-SNIPPET , 2ND option in VS-CODE
I have a doubt. How we can call an event without using EventListner clasd
It's not always necessary to use adEventListner .. there are many more methods like off, once etc
You are great sir
Awesome video sir
hi why emit is not used here???.....
I am Loving IT
Thanks for this sir
Alert📢: there is a small mistake. Thapa Technical didn't use encoding in same line after the mentioned file path. Without encoding this code will run perfectly for small files but if you use larger files then page will keep loading.
And boom 🔥🎉
Sir server.on likha aapne to eventemitter ka use kyu nahi kiya ? Request bhi ak event hena🤔
thanks for making vedio bro
how to use node-fs shortcut?? How to enable it mine not working
Could you please make video on native stream
res.write(chunkdata) after compiling am getting res is not defiened.
would you help or comment it out for the response.
i m also getting eror in this, pls will u help me
Bhai Android Studio par kab video banaaoge we all are waiting.
vinod I have a question this time How we get exact data without changing uft-8
means we are not getting buffer data
in 1st way when we read file, then we have to use utf-8 ? but you did not use that.
How to stream a video plz do a video on that i am trying to do it but only buffer is shown
bhaiya why we write this "request", on this line what does that mean
[nodemon] app crashed - waiting for file changes before starting...
How to solve this error?
we have made server.on(request , (err, data).
but we are not triggering the request event, still it gives us data in browser..
can anyone solve this confusion of mine?
Instra pista kaju badam gram masala share kardiya
that node fs shortcut ,is it pre built in or u have done it personally.?
Pre
Sir How Can I Use Mongodb In Node Js.
Please Make Video In Future.
I Have To Learn :)
sir its is showing error thst end,write are not the functions
If(error) return console.log()
Samjh Nhi Aya...
Isko Hum Jo Pahle Likhte The Simple Method Se Bhi Likh Sakte Hai....
its if statement, check out his Javascript series :)
How we get node-fs shortcut ??????
use NODE-SNIPPET , 2ND option in VS-CODE
8:16 not working
Bro one thing, The title of the video shows buffer, writable steam but you didn't talk about it and on the other hand, it does employ the full feature of steams. Please either choose correct titles or give full knowledge which is mentioned.
Bro I think you missed to explain flush callback(), rest vedio awesome bro
Hey Thapa,
I want to create a live broadcasting application. Where I will stream my screen and video and the users can see the live video. u can say like a cricket match. and I don't want the user's video. I will communicate with them through message. Can you guide me on what should I do?
const fs = require('fs');
// Create a readable stream
const readableStream = fs.createReadStream('input.txt');
// Create a writable stream
const writableStream = fs.createWriteStream('output.txt');
// Pipe the data from the readable stream to the writable stream
readableStream.pipe(writableStream);
// Handle 'finish' event when all data has been written
writableStream.on('finish', () => {
console.log('Data has been written to output.txt');
});
I want to take data from
Any server not from local directory
We want like AWS-S3 bucket or cloudinary
Bro I have Telegram bot that streams music in Telegram voice chat and iam using nodesoursce setup v.16x in that bro can u please suggest me which version is good for that kinda stuff????
you are awosame
sir thell me that node shortcut extenssion....???
bhaiya aap ne ye node-fs kasa banaya ha mera to kaam nahi karr raha
ye hard tha brother
First review and nice video
Please give an example if image frames in stream
Bhai Error AA rha hai ye
events.js:292
throw er; // Unhandled 'error' event
^
Error: getaddrinfo ENOTFOUND 127.0.0.1
at GetAddrInfoReqWrap.onlookup [as oncomplete] (dns.js:66:26)
Emitted 'error' event on Server instance at:
at GetAddrInfoReqWrap.doListen [as callback] (net.js:1495:12)
at GetAddrInfoReqWrap.onlookup [as oncomplete] (dns.js:66:17) {
errno: 'ENOTFOUND',
code: 'ENOTFOUND',
syscall: 'getaddrinfo',
hostname: ' 127.0.0.1'
}
Dai please create video on middleware in nodejs
Why we use server.on ....?
Thanks alot sir
.on se to event define hote h n aur .emit se fire hote h aapne to kahi bhi .emit use nhi kiya naahi aapne event's ko require kiya fir kaise ye .on se event call ho gya plz anyone tell me yaar 😕😕
Sir please make a video on javascript intersectionObserver
bro ye arrow kaise type kiya?
thank you sir
Please Make video on lazy loading...
1:00
Mast
Source code kaisy milyga bro?
Apk whatsapp S no response
pls location tracker pe koi tutorial bnaen
sir please make a video for streaming using mongoose
How to create a short cut?
Mate I think this is my third time can you plz revert back of I can use the contents and convert it into my regional language so it will help the needy
You may ask what for me ? (You may suggest it )
no you shouldn't, unless you're sharing ad revenue with him.
thk bhaiyaa
Make video on video streaming bro
sir smg nahi aaya?
stream nahi hua
Mera code run nahi huaa sir
buffer??
that shortcut didnt work, what should i do?
use NODE-SNIPPET , 2ND option in VS-CODE
majaa aagyaa
Please cover ejs template language within series.
He already cover it. ejs is just file extension of react js
Can any one easily Explain what is mean of .On ⁉️
it's like what we want from our function that what our function have to do after emit
💓💓💓
Getting error server already in use.
Type a command: killall node