Skip to content

Commit

Permalink
Merge pull request #1 from VladimirDev93/dev
Browse files Browse the repository at this point in the history
Merge from dev
  • Loading branch information
unigazer authored Jul 24, 2018
2 parents c648f37 + 31fc34b commit 3be629b
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
12 changes: 8 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
{
"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",
"scripts": {
"start": "node index"
},
"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",
Expand Down

0 comments on commit 3be629b

Please sign in to comment.