From 26bbe0e8afd4a58e6bd4b4fd7a4bbe4cb188aeba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladimir=20Jovanovi=C4=87?= Date: Tue, 24 Jul 2018 02:30:10 +0200 Subject: [PATCH 1/3] Removed start script --- package.json | 3 --- 1 file changed, 3 deletions(-) diff --git a/package.json b/package.json index df2f454..1153d31 100644 --- a/package.json +++ b/package.json @@ -4,9 +4,6 @@ "version": "1.0.0", "description": "Check if there is a newer version of Node.js than the one that is installed on the machine.", "main": "index.js", - "scripts": { - "start": "node index" - }, "author": "Vladimir Jovanović", "license": "MIT", "dependencies": { From 6442956066b95ef2f484fd74cf82fc617d974cde Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladimir=20Jovanovi=C4=87?= Date: Tue, 24 Jul 2018 02:37:38 +0200 Subject: [PATCH 2/3] More description --- README.md | 6 +++++- package.json | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b795b06..b96c9ca 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,10 @@ # Node.js Checker -Every time you log in, Windows will start a background process to check wether a new version of Node.js has been published. If there is a version newer than the one installed on your machine, it will display a notification with a small description where it shows the latest tag version from official Node GitHub repository. +Every time you log in, Windows will start a background process to check whether a new version of Node.js has been published. If there is a version newer than the one installed on your machine, it will display a notification with a small description where it shows the latest tag version from the official Node.js [GitHub](https://github.com/nodejs/node) repository. + +# Why only for Windows? + +Since there is no auto updater on Windows (not that I know of) I had to create this Node.js app because I like to have up-to-date Node.js installed on my machine. It's not necessary to run this app on Linux and Mac since Node.js is updated through terminal on those systems. # Install diff --git a/package.json b/package.json index 1153d31..545226b 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "node-checker", "productName": "Node.js Checker", - "version": "1.0.0", + "version": "1.0.2", "description": "Check if there is a newer version of Node.js than the one that is installed on the machine.", "main": "index.js", "author": "Vladimir Jovanović", From 31fc34b25e9e0c4faea20c95a3921504994ed954 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladimir=20Jovanovi=C4=87?= Date: Tue, 24 Jul 2018 02:48:51 +0200 Subject: [PATCH 3/3] Repository data --- package.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/package.json b/package.json index 545226b..b359bcf 100644 --- a/package.json +++ b/package.json @@ -5,6 +5,13 @@ "description": "Check if there is a newer version of Node.js than the one that is installed on the machine.", "main": "index.js", "author": "Vladimir Jovanović", + "repository": { + "type": "git", + "url": "https://github.com/VladimirDev93/node-checker" + }, + "bugs": { + "url": "https://github.com/VladimirDev93/node-checker/issues" + }, "license": "MIT", "dependencies": { "auto-launch": "^5.0.5",