Table of Contents

Update Express Generator

Fetcher can check for a newer Express Generator version and optionally install it.

Update options

check_for_update      = true
automatic_update      = true
update_check_interval = 24

Option behavior:

Enables update checks when fetcher runs.

If a newer version exists, fetcher downloads and installs it automatically.

Minimum hours between update checks.

Fully automatic (default)

check_for_update      = true
automatic_update      = true
update_check_interval = 24

Use when you want Express Generator to stay current with no manual steps.

Notify only

check_for_update      = true
automatic_update      = false
update_check_interval = 24

Use when updates must be reviewed before installation.

No update checks

check_for_update = false

Use in controlled environments where versions are pinned externally.

CLI examples

Check for updates but do not auto-install:

node ./bin/fetch.js --check-for-update true --automatic-update false --update-check-interval 0

Disable update checks for this run:

node ./bin/fetch.js --check-for-update false

Force an update check immediately:

node ./bin/fetch.js --check-for-update true --update-check-interval 0

Notes