sidebar hamburger menu

Managing the SecureChain repository

This page describes how to upgrade an already-installed SecureChain package to a newer release.

How to Upgrade to a Newer Version

Choose the Ecosystem:
  1. Check your TuxCare Nexus account for the latest version available for each SecureChain package.

  2. To upgrade, install the new version of the package — npm install will replace the previously installed release:

    npm install <package>@<new-version>
    

    If npm install does not pick up the new version, clear the npm cache and reinstall:

    rm -rf node_modules package-lock.json && npm cache clean --force
    npm install