Javascript : Push notifications to browser with Push.js
Problem:
Instead of RSS, you want to send notifications to your visitor's computer through their browser about the latest updates that your blog or organization has to offer. Such as:
How to do that?
Solution:
Instead of implementing the notification with API, use Push.js instead. It is a free notification library that handles all the basic push notifications with a couple of JavaScript lines.
You can invoke Push.js with
<script>
Push.create('Hello! Thank you for allowing to push notification. I will be updating you with the latest updates')
</script>
To see more advanced configurations, head over to https://github.com/Nickersoft/push.js to see the available options.
In case you pressed the "BLOCK" button and unable to see the prompt again during testing phase, you will need to revoke the block/allow
notifications in your browser.
To do this for example, in Chrome - click settings
, scroll down to Advanced
tab, click Content Settings
and click Notifications
OR paste this chrome://settings/content/notifications
into the address bar.
NOTE: From my own experience, Push notifications will not be able to work with localhost.
See also : Javascript : Put image into Chrome browser's console
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+22.3k Golang : Calculate time different
+42k Golang : Convert []byte to image
+13.4k Golang : Human readable time elapsed format such as 5 days ago
+18.1k Golang : Generate thumbnails from images
+4.3k Linux/MacOSX : How to symlink a file?
+7.6k Golang : Multiplexer with net/http and map
+6.4k Golang : Get expvar(export variables) to work with multiplexer
+8.4k Golang : How to capture return values from goroutines?
+7.4k Javascript : How to check a browser's Do Not Track status?
+6.9k Golang : Scanf function weird error in Windows
+13.4k Golang : Reverse IP address for reverse DNS lookup example
+8.1k Android Studio : Import third-party library or package into Gradle Scripts