jQuery UI
Endless Lifecycle Support (ELS) for jQuery UI from TuxCare provides security fixes for jQuery UI versions that have reached their end of life. This allows you to continue running jQuery UI applications without vulnerability concerns, even after official support has ended.
Supported jQuery UI Versions
- jQuery UI 1.10.4
Installation
Docker compatiblePrerequisites
- npm package manager installed
- TuxCare registry token — contact sales@tuxcare.com
- To browse available artifacts, visit TuxCare Nexus and click Sign in in the top right corner. You may need to refresh the page after logging in.
Create or update the .npmrc file
Navigate to the root directory of your jQuery UI project and create a
.npmrcfile or update it if it already exists.Example:
my-jquery-ui-project/ ├── node_modules/ ├── package.json ├── .npmrc ⚠️ ← Create it here └── package-lock.jsonConfigure the npm registry
Use an editor of your choice (e.g., VS Code) to add the following registry address lines to the
.npmrcfile:registry=https://registry.npmjs.org/ @els-js:registry=https://nexus.repo.tuxcare.com/repository/els_js/ //nexus.repo.tuxcare.com/repository/els_js/:_auth=${TOKEN}Replace
${TOKEN}with the token you received from sales@tuxcare.com.Update dependencies
Update your
package.jsonfile to replace jQuery UI dependencies with TuxCare-maintained packages. You can do this in two ways:Option 1: Manual update
Manually update your
package.jsonfile by replacing your jQuery UI dependencies with the TuxCare packages. This method gives you full control over which packages to update."dependencies": { "jquery-ui": "npm:@els-js/jquery-ui@>=1.10.4-tuxcare.1" }, "overrides": { "jquery-ui@1.10.4": "npm:@els-js/jquery-ui@>=1.10.4-tuxcare.1" }Option 2: TuxCare Patcher (Automated)
Install the Patcher globally and run it. The TuxCare Patcher automatically detects the jQuery UI version in your
package.jsonand updates yourdependenciesandoverridesto use the corresponding TuxCare@els-js/*packages.npm install -g @els-js/tuxcare-patcher --userconfig ./.npmrc tuxcare-patch-jsThe patcher will update your
package.json, for example, from:"dependencies": { "jquery-ui": "^1.10.4" }to:
"dependencies": { "jquery-ui": "npm:@els-js/jquery-ui@>=1.10.4-tuxcare.1" }, "overrides": { "jquery-ui@1.10.4": "npm:@els-js/jquery-ui@>=1.10.4-tuxcare.1" }
Refresh the project dependencies
Remove
node_modules,package-lock.json, and clear the npm cache:rm -rf node_modules package-lock.json && npm cache clean --forceInstall dependencies:
npm installThe token for the TuxCare repository is automatically picked up from your
.npmrcfile.Verify the setup
Use npm to list the project's dependencies and confirm TuxCare packages are resolved correctly:
npm listAfter reviewing the dependencies, run your application to ensure everything works correctly. The
npmtool should be able to identify and resolve dependencies from the TuxCare ELS for jQuery UI repository.
