This will query nodeJs's Distribution page and check for integer updates from this URL: https://nodejs.org/dist/
if a new integer update exists, then a pushOver notification will be sent to the added API account. To install:
git clone https://github.com/audstanley/checkNodeJsForLatestDistro;
cd checkNodeJsForLatestDistro;
npm install;Edit app.js and change the pushover API user tokens and app tokens to your own. These variables:
let p = new push({
user: "AAAAAAAAAAAAAAAAAAAAAAAAAA", //change the user API key
token: "BBBBBBBBBBBBBBBBBBBBBBBBBB", //and the token API key
})Then
node app.jsA query every ten minutes at about 50Kb per query runs around 206Mb a month in queries. I set my script (personally) to run once an hour which should cost around 35 Mb a month.