Skip to content

Commit b6af5d8

Browse files
TheJaredWilcurtrogerwang
authored andcommitted
NWJS to NW.js
1 parent de11079 commit b6af5d8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/For Users/Advanced/Autoupdates.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
[TOC]
55

6-
NWJS tend to support the update solution made by community, not a built-in one. Below is the list of existing soutions, which worth checking.
6+
NW.js tend to support the update solution made by community, not a built-in one. Below is the list of existing soutions, which worth checking.
77
- [node-webkit-updater](https://github.com/edjafarov/node-webkit-updater) (by [@edjafarov](https://github.com/edjafarov))
88
- [nwjs-autoupdater](https://github.com/oaleynik/nwjs-autoupdater) (by [@oaleynik](https://github.com/oaleynik))
99
- [nw-autoupdater](https://github.com/dsheiko/nw-autoupdater) (by [@dsheiko](https://github.com/dsheiko))
@@ -23,16 +23,16 @@ You should build this logic by yourself though ([basic example](https://github.c
2323

2424
## nwjs-autoupdater
2525

26-
The tiny golang application (when built it is just ~2MB), which can be bundled with NWJS application and then used to unpack updates.
26+
The tiny golang application (when built it is just ~2MB), which can be bundled with NW.js application and then used to unpack updates.
2727
To update target application updater needs to know two things - where zip archive with the new version is located and where is the app's executable to restart application after update. These can be passed to updater via command line arguments `--bundle` and `--inst-dir`, where `--bundle` is the path to the zip archive with the new app version and `--inst-dir` is the path to app's executable.
2828

2929
There are multiple advantages over `node-webkit-updater`:
3030

3131
- It can update the updater itself.
3232
- Doesn't require elevated privilegies (unless application itself has been installed in the folder which require elevated privilegies).
33-
- Updater's executalbe has way smaller size as it doesn't require bundling the whole new NWJS application with the main application.
33+
- Updater's executalbe has way smaller size as it doesn't require bundling the whole new NW.js application with the main application.
3434

35-
The logic to check for updates needs to be built on your own too. The [example](https://github.com/oaleynik/nwjs-autoupdater/blob/master/examples/index.js) shows the way how to use javascript module as an entry point for NWJS application and check for updates in background.
35+
The logic to check for updates needs to be built on your own too. The [example](https://github.com/oaleynik/nwjs-autoupdater/blob/master/examples/index.js) shows the way how to use javascript module as an entry point for NW.js application and check for updates in background.
3636

3737
## nw-autoupdater
3838

@@ -47,4 +47,4 @@ The NPM module provides API similar to one of `node-webkit-updater`, but extende
4747
- Backup actual version and replace it with the new one
4848
- Restart the updated app from its original location
4949

50-
The package includes examples of release server and client.
50+
The package includes examples of release server and client.

0 commit comments

Comments
 (0)