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.
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)
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?
@@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.
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 ?
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?
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.
.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 😕😕
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????
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?
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.
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'); });
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 :))
not enjoyment and not sorrow only see awesome ,fantastic nodejs video
Itne details me to google bhi nhi batata...Your tutorials helps me a lot ...Thank you bhai
Bhai apki saari videos is best.
your teaching method is❤❤❤❤👏👏👏👏❤❤❤❤
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 🤞
underrated channel
Bhaiya Ji SuperHit😊👏👏🙏
.on method to EventEmitter class ka method h ..to... server object on method ko kayse access kiya..???
Same question too....!!
amazing video! very informative and in depth. Brother, can you please make a roadmap for how to learn SERVER-SIDE-PROGRAMMING?
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
@@factomindset1407 i also realised that
It is a best things you share sir..❤
Thank you so much ☺️
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
@8.15 how did you add the shortcut. is it the feature of vscode ?, did you install any plugin in it >?
install node snipets
@@s-game-studio45 thanku bro for your help
use NODE-SNIPPET , 2ND option in VS-CODE
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)
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?
Server.on('request'
Yea request kaha sea aya ??
Or yea on exactly hea kia ??
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.
I enjoyed a lot in this video thanks sir
Issue I written code but answer is not showing in local host server
Sir server.on likha aapne to eventemitter ka use kyu nahi kiya ? Request bhi ak event hena🤔
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 ?
This was a pretty awsome video, can u make a video on streaming sql database using sequelize
how to use node-fs shortcut?? How to enable it mine not working
sir...please make video on payment gateway ...
this course in very good
And boom 🔥🎉
[nodemon] app crashed - waiting for file changes before starting...
How to solve this error?
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
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
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?
First review and nice video
Bhai Android Studio par kab video banaaoge we all are waiting.
hi why emit is not used here???.....
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.
bhaiya why we write this "request", on this line what does that mean
Plz plz make mongodb tutorial with node js after this...🙏🙏🙏🙏
jaroor
@@DigitalAman tu kyu reply de raha hai🤣😂😂
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
in 1st way when we read file, then we have to use utf-8 ? but you did not use that.
sir its is showing error thst end,write are not the functions
vinod I have a question this time How we get exact data without changing uft-8
means we are not getting buffer data
This tutorial is very awesome
bhaiya aap ne ye node-fs kasa banaya ha mera to kaam nahi karr raha
superb video. thanks
How to stream a video plz do a video on that i am trying to do it but only buffer is shown
Vinod Bhai is the best
nice work lad.....
Nicely explained 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 😕😕
Awesome video sir
that node fs shortcut ,is it pre built in or u have done it personally.?
Pre
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 :)
I am Loving IT
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 great sir
bro ye arrow kaise type kiya?
How we get node-fs shortcut ??????
use NODE-SNIPPET , 2ND option in VS-CODE
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?
Sir How Can I Use Mongodb In Node Js.
Please Make Video In Future.
I Have To Learn :)
Thanks for this sir
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'
}
Could you please make video on native stream
8:16 not working
thanks for making vedio bro
sir thell me that node shortcut extenssion....???
I want to take data from
Any server not from local directory
We want like AWS-S3 bucket or cloudinary
Mast
ye hard tha brother
you are awosame
Instra pista kaju badam gram masala share kardiya
Why we use server.on ....?
Bro I think you missed to explain flush callback(), rest vedio awesome bro
Source code kaisy milyga bro?
Apk whatsapp S no response
majaa aagyaa
Thanks alot sir
Mera code run nahi huaa sir
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.
that shortcut didnt work, what should i do?
use NODE-SNIPPET , 2ND option in VS-CODE
Sir please make a video on javascript intersectionObserver
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');
});
sir smg nahi aaya?
Dai please create video on middleware in nodejs
thank you sir
thk bhaiyaa
Please give an example if image frames in stream
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.
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
sir please make a video for streaming using mongoose
Please Make video on lazy loading...
Getting error server already in use.
Type a command: killall node
pls location tracker pe koi tutorial bnaen
stream nahi hua
💓💓💓
buffer??
Please cover ejs template language within series.
He already cover it. ejs is just file extension of react js
Make video on video streaming bro
I can not install nodemon ...
try installing globally using command prompt