This is a great introduction to regular notifications, but these are NOT push notifications, the video title is misleading. In order to make push notifications, you must pair the Notification API with the Push API (see MDN docs) in server workers. You should update the title of the video to reflect that.
My take away from this tutorial i just watched because it sounded interesting is: i know it exists, i know it is easy to do, i know where to find a tutorial. Thanks a lot Kyle
Correction: this is known as a local notification, not a push notification. They are both part of the umbrella term of notifications but have entirely different implementations. A push notification is triggered with data sent from a remote origin, typically an APN (iOS), GCP (Android) or via the web push API connected to a remote server. The remote data provider pushes the data to the client, hence the term 'push notification'. A local notification is triggered from within a web page or app, and does not rely on a remote origin to provide data. The local notification can be displayed with data retrieved from a remote source, but this is not the same as a push notification.
this is what I've been looking for the entire video. I made a push notification with node NodeJS and I could still remember that there is VAPID thing you need to be able to send push notification. I was confused when he said you can send push notification with just client-side JavaScript.
It is super easy to learn stuff about the notifications API, so it does not require much research, but the point still stands that he makes nice explanations. And that is all that matters. :thumbsup:
@@ahmad98282 no, you did not say that the notifications API is super easy and needs no research at all, you can literally just read the docs, there is no need for a tutorial, but I am not saying that this is a worthless video
I'm the guy who told you to blink your eyes a bit more when you only had like 7k subscribers. Congratulations on 1 million, also you are doing good with blinking 👁️💪
great video about notifications! but beware! notifications only, not push notifications! for push notifications you must first subscribe to push notifications on a web page / site, and then the server will send those push notifications, no matter if the browser is on that page or that page is closed; of course, after receiving a push notification you will show it to the user like the examples in this video
@@ksrele yes you need a service worker on the client to listen for the notifications and you need some cryptography to communicate between the server and the client.
Nice tutorial, thanks! Please do a tutorial on PWA & Web push notifications (for when the browser is closed to keep receiving notifications). They are kinda complex, but I think you will be able to explain them very clearly.
Thanks for the tutorial... As in my case of Win10, go to [Settings] -> [System] -> [Notifications and Actions] then turn on [Get notifications from apps and other senders] and everything works fine...
Great tutorial! Though the JS notification api isn’t fully supported on phones. It isn’t even possible on IOS as of now and chrome on android needs service workers. Just additional information :)
As mentioned by @chronSyn below this is not a push notification, that requires a backend service to 'push' the notification based on some event to the browser even when you are not viewing the page. Google has a push api but most are paid and a little complex to implement.
Actually you‘re developing „Local Notifications“. These aren‘t real „push“ notifications while the web app or app is closed. For real push notifications you need a middleware (like FCM) the Connection to the Providers (Apple, Google,…) and your own backend (like nodejs) where you‘re sending out real push notifications.
I don’t think I’m being pedantic when I say that local notifications, the obvious subject of this video, are not push notifications. This is a pretty clickbaity title.
Trying to wrap my head around how this could be useful... Doesn't seem to add anything that you couldn't do yourself as he's basically using them as info modals... I'd like to create some, but my site is multi-user (like most sites) and this solution would send a notification to EVERYONE (which is not ideal in 99% of cases)... So, I guess real push notifications HAVE to come from the back end, else they are just modals... no?
@@SLRModShop they are not modals and can be shown outside of the browser window. The usability of this is pretty limited, but let’s say you have a page that periodically polls some data or similar, and notifies the user when something in particular comes up. With local notifications (and a browser that doesn’t suspend JavaScript execution) the user could be doing something else in a different tab, or even a different app, and get notified even tho the browser might be minimized.
@@crkvend oooh, that's a good call... I'm trying to minimize the amount of calls to the database but yeah, that's definitely an option to use the front to poll the back and act on that... Ok... Now I have some thinking to do ^-^ Might be more powerful than I realise...
With all this said, I no way wanted to bash Kyle, I’ve been a professional developer for more that 10 years and still keep learning new things from his videos!
Cool video Kyle. Can u pls create video about web push notifications? About Servise Workers and other thinks, that needs for webpush notifications? Interesting also how webpush notifications works in deeffrent browsers, especially in Safari
Would have really liked to see how the Notifications look and work for mobile usage. Also interesting would be the mobile Notifications on a PWA, which looks and feels like a mobile App.
This is a great introduction to regular notifications, but these are NOT push notifications, the video title is misleading. In order to make push notifications, you must pair the Notification API with the Push API (see MDN docs) in server workers. You should update the title of the video to reflect that.
Push API isn't supported by Safari.
+1
+1
+1
@@porroapp yea only on apps not safari which is a L
My take away from this tutorial i just watched because it sounded interesting is: i know it exists, i know it is easy to do, i know where to find a tutorial. Thanks a lot Kyle
Correction: this is known as a local notification, not a push notification. They are both part of the umbrella term of notifications but have entirely different implementations.
A push notification is triggered with data sent from a remote origin, typically an APN (iOS), GCP (Android) or via the web push API connected to a remote server. The remote data provider pushes the data to the client, hence the term 'push notification'.
A local notification is triggered from within a web page or app, and does not rely on a remote origin to provide data. The local notification can be displayed with data retrieved from a remote source, but this is not the same as a push notification.
So the notification done in this way would work if the user is not with the page opened?
@@alexdominguess no it wont
@@alexdominguess no
this is what I've been looking for the entire video. I made a push notification with node NodeJS and I could still remember that there is VAPID thing you need to be able to send push notification. I was confused when he said you can send push notification with just client-side JavaScript.
thank you for the correction, if not because you, i'll misguided too
This guy is God sent. The explanation is sooo clean
Your tutorials are the best for me through the whole youtube. Useful information in every seconds, and nothing else.
This is great. Would be even better if we got a video on the Push API :)
Exactly. But pls avoid firebase. Custom nodejs app is way better in terms of customization and controle
Thank you Kyle. I'm from Uzbekistan and Im learning web programming. You really simplify the web!
Too good and an excellent addition to my code arsenal. Long live mate.
@John REST IN PISS QUEEN, SMOKING ON THE ROYAL PACK 🚬🚬🚬
@John 💀
@John Queen what??!! What are you on?
@John dude...
@John ayo
Bro, You really one of the best people that teaching programming on youtube. i have learnt a lot of things from you and your explanation was amazing
I love the way you research something for a video. Now this can't be more explained than you have already done
It is super easy to learn stuff about the notifications API, so it does not require much research, but the point still stands that he makes nice explanations.
And that is all that matters. :thumbsup:
@@arjix8738 Thats what i said in fewer lines
@@ahmad98282 no, you did not say that the notifications API is super easy and needs no research at all, you can literally just read the docs, there is no need for a tutorial, but I am not saying that this is a worthless video
Your way Of Teaching Is Awesome ❤️
Very useful video. Glad I'm part of your subscribed viewers Kyle. Keep it up!
Yet another high value tutorial. Thank you!
We need more videos like this!
I'm the guy who told you to blink your eyes a bit more when you only had like 7k subscribers. Congratulations on 1 million, also you are doing good with blinking 👁️💪
great video about notifications! but beware! notifications only, not push notifications! for push notifications you must first subscribe to push notifications on a web page / site, and then the server will send those push notifications, no matter if the browser is on that page or that page is closed; of course, after receiving a push notification you will show it to the user like the examples in this video
Do you need background workers for this to work?
@Web Dev Simplified can you make a tutorial on workers, what they are and how to use them?
@@ksrele yes you need a service worker on the client to listen for the notifications and you need some cryptography to communicate between the server and the client.
It's been great to have this video posted recently as I've been thinking about how to do this for my app. Thank you so much
I was looking for this video in your channel. But now i got it. Big ❤ bro.
Nice tutorial, thanks! Please do a tutorial on PWA & Web push notifications (for when the browser is closed to keep receiving notifications). They are kinda complex, but I think you will be able to explain them very clearly.
That would be super cool to have such a tutorial
Yes, please! 😄
Yes please!
Yes please
Yes please
Thank you man i was looking for this video
i looked long time for a video like this. Thank you.
Thanks for the tutorial... As in my case of Win10, go to [Settings] -> [System] -> [Notifications and Actions] then turn on [Get notifications from apps and other senders] and everything works fine...
I will have to implament that next week at my job. Perfect timing. Thank you so much!
The COME BACK please is having me dead.😂
Very, very awesome Kyle! I've always wondered how these notifications work. Thanks!
Thanks! I've been searching how to get it and this is brilliant :D
Your the best in covering useful Javascript API's
Super exciting content!
Awesome explanation. I owe you!! 😊
such a high value tutorial and info! thanks kyle!
you are such a good teacher man
Yooo i needed this for my project, thanks a lot
Stuff like this is awesome, I think your CSS stuff is good but this is what people really want!
Damn. I needed this like a week ago lol. But it's still a great learning experience.
Thank you so much! Your clips are really useful for me and other people.
you deserve a huge like 👍🏻👍🏻
Great lesson, thank for sharing this. Tomorrow I will introduce this in some systems that Im building
I’ve been thinking of additional features to my website and this helps alot thanks kyle❤️
Even without Push API , still, CONCISE,INFORMATIVE,MEANINGFUL...GREAT!
Well explained, thanks man 💙
Thanks *Kyle* for sharing a good tutorial like this.
Really learned some new things bro. Love you
Welldone bro. Love your tutorials. I however belive I am stuck in the tutorial hell. Been doing Front dev for a month. No job or internship yet
thank you kyle.
how awesome is this!
nice didin't expect that really good well done
ITS REALLY WORKED LOL THANK YOU DUDE
Wow, I love this short and the way he was explaining it, EXCELLENT. Not one time I felt lost or disorientated. K.I.S.S. is the way to go!!😀
Awesome bro.....
Thanks alot bro..
You are awesome i love your content keep going ♥
Great tutorial! Though the JS notification api isn’t fully supported on phones. It isn’t even possible on IOS as of now and chrome on android needs service workers.
Just additional information :)
tutorial added to my "to try list" asap
Nice! Good job bro, best tutorials!
I was thinking for a few days about sending you an email to make a video about PWA and push notifications. Here is the part of those. Thanks
Nice one Kyle. Noticed the ".... get rid of this sh!t" tho 😅
The video was helpful thank you for making me better than before
always cool to see native stuff
Cheers for this tutorial man !
You earnt a subscribe, my friend.
This is a very good tutorial for notification. I just wanted to have this kind of feature for my project. Thanks😁
As mentioned by @chronSyn below this is not a push notification, that requires a backend service to 'push' the notification based on some event to the browser even when you are not viewing the page. Google has a push api but most are paid and a little complex to implement.
Great video Kyle
I always wondered how this worked. Thanks!
Wow, your knowledge is amazing. Thanks for all buddy!!
amazing! again, nice to see that JS is so powerful
I justtttt wanted to learn about push notification and you got me
Wow! Thank you so much for this video ... I learnt a lot in one video 😍😍😍
Amazing tutorial, the best I've seen, it was well explained and in 11 minutes, thanks 👏💯👍😄👍
New level knowledge, thanks bro 👍
It's cool to try on the phone! For my own site notification
wow, thank you so much, it was a big help
you have a great box of contents
Thanks a lot for this fantastic video. Best explanation ever.
Thanks for sharing those are great materials
Ooh, very interesting! Great tutorial.
You make killer content 👍. Good teacher too!
Perfect! Now I can annoy people more jist for fun 🤣
Amazing Stuff, as always...... Please make one with React PWA and Web... I believe your tutorial would be so much better to wrap my head around.
7:43 Imagine if that was real.😂🔥Thanks for the video anyway. 👍
Actually you‘re developing „Local Notifications“. These aren‘t real „push“ notifications while the web app or app is closed.
For real push notifications you need a middleware (like FCM) the Connection to the Providers (Apple, Google,…) and your own backend (like nodejs) where you‘re sending out real push notifications.
Very helpful and well explained
Great man 👍🏻
Just Amazing man❤❤❤❤
Cool! Thank for a great tutorial.
So brilliant! Thank you!
I don’t think I’m being pedantic when I say that local notifications, the obvious subject of this video, are not push notifications.
This is a pretty clickbaity title.
Came here to verify this...
Trying to wrap my head around how this could be useful... Doesn't seem to add anything that you couldn't do yourself as he's basically using them as info modals...
I'd like to create some, but my site is multi-user (like most sites) and this solution would send a notification to EVERYONE (which is not ideal in 99% of cases)... So, I guess real push notifications HAVE to come from the back end, else they are just modals... no?
@@SLRModShop they are not modals and can be shown outside of the browser window.
The usability of this is pretty limited, but let’s say you have a page that periodically polls some data or similar, and notifies the user when something in particular comes up.
With local notifications (and a browser that doesn’t suspend JavaScript execution) the user could be doing something else in a different tab, or even a different app, and get notified even tho the browser might be minimized.
@@crkvend oooh, that's a good call... I'm trying to minimize the amount of calls to the database but yeah, that's definitely an option to use the front to poll the back and act on that... Ok... Now I have some thinking to do ^-^ Might be more powerful than I realise...
With all this said, I no way wanted to bash Kyle, I’ve been a professional developer for more that 10 years and still keep learning new things from his videos!
Wow it's very easy to understand is there having any disadvantage if it's please explain about it 🙏🏼i want to add it in my project
Tag is the thing I learnt new.
I'd like to see a video of your daily routine.
Where you work etc.
Nice tutorial. I doubt many people actually grant that access. I always say NO when that popup shows
Cool video Kyle. Can u pls create video about web push notifications? About Servise Workers and other thinks, that needs for webpush notifications? Interesting also how webpush notifications works in deeffrent browsers, especially in Safari
thanks max thats really helpfull
Nice presentation, I wouldl like to use that mechanism to share clipboard content from Windows Pc to Android mobile and vice et versa.
Thank you so much!
This is amazing!
THANKS
Would have really liked to see how the Notifications look and work for mobile usage.
Also interesting would be the mobile Notifications on a PWA, which looks and feels like a mobile App.
hey man did you find anything like that? I am searching for the same thing
This tutorial is a big help for my thesis right now! Thank you!
hi kyle, could you do a video tutorial on how to send background notifications (like facebook does on android when the browser is closed)?
That's really an informative Video,
Thanks @kyle
I ca back to soft after about 10 years when I was using soft soft 10 and for its best program Ive seen in fact its also simpliest one