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
+1.2k Golang : Markov chains to predict probability of next state example
+2.5k Golang : Shuffle array of list
+10.9k Golang : Check if directory exist and create if does not exist
545 Golang : Customize scanner.Scanner to treat dash as part of identifier
+2.9k Golang : Debug with Godebug
+6k Golang : Simple word wrap or line breaking example
+6.2k Golang: Pad right or print ending(suffix) zero or spaces in fmt.Printf example
+5.9k Golang : Compress and decompress file with compress/flate example
+3.5k Golang : Check from web if Go application is running or not
+6.6k Golang : calculate elapsed run time
+5.1k Golang : Merge video(OpenCV) and audio(PortAudio) into a mp4 file