Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

3,983,400

Downloads of v 6.9.2:

7,879

Last Update:

08 Dec 2016

Package Maintainer(s):

Software Author(s):

  • Node.js Foundation

Tags:

Node.js LTS (Install)

This is not the latest version of Node.js LTS (Install) available.

  • 1
  • 2
  • 3

6.9.2 | Updated: 08 Dec 2016

Downloads:

3,983,400

Downloads of v 6.9.2:

7,879

Maintainer(s):

Software Author(s):

  • Node.js Foundation

Node.js LTS (Install) 6.9.2

This is not the latest version of Node.js LTS (Install) available.

Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Node.js Foundation. The inclusion of Node.js Foundation trademark(s), if any, upon this webpage is solely to identify Node.js Foundation goods or services and not for commercial purposes.

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Node.js LTS (Install), run the following command from the command line or from PowerShell:

>

To upgrade Node.js LTS (Install), run the following command from the command line or from PowerShell:

>

To uninstall Node.js LTS (Install), run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade nodejs-lts -y --source="'INTERNAL REPO URL'" --version="'6.9.2'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade nodejs-lts -y --source="'INTERNAL REPO URL'" --version="'6.9.2'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install nodejs-lts
  win_chocolatey:
    name: nodejs-lts
    version: '6.9.2'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'nodejs-lts' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '6.9.2'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller nodejs-lts
{
    Name     = "nodejs-lts"
    Version  = "6.9.2"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'nodejs-lts':
  ensure   => '6.9.2',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved by moderator flcdrg on 17 Dec 2016.

Description

This package is the LTS (Long Term Support) release of Node.js. See the LTS schedule for more information.

If you want the Current release, install the nodejs package instead.

Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine. Node.js uses an event-driven, non-blocking I/O model that makes it lightweight and efficient. Node.js' package ecosystem, npm, is the largest ecosystem of open source libraries in the world.


tools\chocolateyinstall.ps1
$ErrorActionPreference = 'Stop';

$packageName= 'nodejs-lts'
$toolsDir   = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url        = 'https://nodejs.org/dist/v6.9.2/node-v6.9.2-x86.msi'
$url64      = 'https://nodejs.org/dist/v6.9.2/node-v6.9.2-x64.msi'
$checksum32 = 'f8b911a249d45358464135c41e7b16fe4abef8d047efb6183f043bc965632aea'
$checksum64 = '9b2fcdd0d81e69a9764c3ce5a33087e02e94e8e23ea2b8c9efceebe79d49936e'

$packageArgs = @{
  packageName   = $packageName
  unzipLocation = $toolsDir
  fileType      = 'MSI'
  url           = $url
  url64bit      = $url64
  softwareName  = 'Node.js'
  checksum      = $checksum32
  checksumType  = 'sha256'
  checksum64    = $checksum64
  checksumType64= 'sha256'

  silentArgs    = "/qn /norestart /l*v `"$($env:TEMP)\$($packageName).$($env:chocolateyPackageVersion).MsiInstall.log`""
  validExitCodes= @(0, 3010, 1641)
}

Install-ChocolateyPackage @packageArgs
tools\chocolateyuninstall.ps1
$ErrorActionPreference = 'Stop';

$packageName = 'nodejs-lts'
$softwareName = 'Node.js*'
$installerType = 'MSI' 

$silentArgs = '/qn /norestart'
$validExitCodes = @(0, 3010, 1605, 1614, 1641)

$uninstalled = $false
[array]$key = Get-UninstallRegistryKey -SoftwareName $softwareName

if ($key.Count -eq 1) {
  $key | % { 
    $file = "$($_.UninstallString)"

    if ($installerType -eq 'MSI') {
      $silentArgs = "$($_.PSChildName) $silentArgs"
      $file = ''
    }

    Uninstall-ChocolateyPackage -PackageName $packageName `
                                -FileType $installerType `
                                -SilentArgs "$silentArgs" `
                                -ValidExitCodes $validExitCodes `
                                -File "$file"
  }
} elseif ($key.Count -eq 0) {
  Write-Warning "$packageName has already been uninstalled by other means."
} elseif ($key.Count -gt 1) {
  Write-Warning "$key.Count matches found!"
  Write-Warning "To prevent accidental data loss, no programs will be uninstalled."
  Write-Warning "Please alert package maintainer the following keys were matched:"
  $key | % {Write-Warning "- $_.DisplayName"}
}
tools\VERIFICATION.txt
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.

1.  Download the appropriate installer:

    x32: https://nodejs.org/dist/v6.9.2/node-v6.9.2-x86.msi
    x64: https://nodejs.org/dist/v6.9.2/node-v6.9.2-x64.msi

2.  Download Checksums:
        https://nodejs.org/dist/v6.9.2/SHASUMS256.txt.asc

3.  You can use one of the following methods to obtain the checksum: 
    - Use powershell function 'Get-FileHash'
    - Use Chocolatey utility 'checksum.exe'

    checksum32: f8b911a249d45358464135c41e7b16fe4abef8d047efb6183f043bc965632aea
    checksum64: 9b2fcdd0d81e69a9764c3ce5a33087e02e94e8e23ea2b8c9efceebe79d49936e

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
Node.js LTS (Install) 22.16.0 50700 Thursday, May 22, 2025 Approved
Node.js LTS (Install) 22.15.1 13760 Thursday, May 15, 2025 Approved
Node.js LTS (Install) 22.15.0 34597 Wednesday, April 23, 2025 Approved
Node.js LTS (Install) 22.14.0 102862 Wednesday, February 12, 2025 Approved
Node.js LTS (Install) 22.13.1 33571 Wednesday, January 22, 2025 Approved
Node.js LTS (Install) 22.13.0 73797 Saturday, January 11, 2025 Approved
Node.js LTS (Install) 22.11.0 181608 Tuesday, October 29, 2024 Approved
Node.js LTS (Install) 20.19.3 89 Tuesday, June 24, 2025 Approved
Node.js LTS (Install) 20.19.2 228 Thursday, May 15, 2025 Approved
Node.js LTS (Install) 20.19.1 100 Wednesday, April 23, 2025 Approved
Node.js LTS (Install) 20.19.0 408 Friday, March 14, 2025 Approved
Node.js LTS (Install) 20.18.3 843 Monday, February 10, 2025 Approved
Node.js LTS (Install) 20.18.2 285 Wednesday, January 22, 2025 Approved
Node.js LTS (Install) 20.18.1 940 Saturday, January 11, 2025 Approved
Node.js LTS (Install) 20.18.0 158056 Friday, October 4, 2024 Approved
Node.js LTS (Install) 20.17.0 85089 Thursday, August 22, 2024 Approved
Node.js LTS (Install) 20.16.0 55550 Thursday, July 25, 2024 Approved
Node.js LTS (Install) 20.15.1 38139 Tuesday, July 9, 2024 Approved
Node.js LTS (Install) 20.15.0 45301 Friday, June 21, 2024 Approved
Node.js LTS (Install) 20.14.0 54945 Wednesday, May 29, 2024 Approved
Node.js LTS (Install) 20.13.1 46521 Thursday, May 9, 2024 Approved
Node.js LTS (Install) 20.13.0 6298 Tuesday, May 7, 2024 Approved
Node.js LTS (Install) 20.12.2 56057 Thursday, April 11, 2024 Approved
Node.js LTS (Install) 20.12.1 15898 Thursday, April 4, 2024 Approved
Node.js LTS (Install) 20.12.0 18388 Wednesday, March 27, 2024 Approved
Node.js LTS (Install) 20.11.1 76511 Thursday, February 15, 2024 Approved
Node.js LTS (Install) 20.11.0 57594 Wednesday, January 10, 2024 Approved
Node.js LTS (Install) 20.10.0 58869 Thursday, November 23, 2023 Approved
Node.js LTS (Install) 20.9.0 56270 Tuesday, October 24, 2023 Approved
Node.js LTS (Install) 18.20.8 401 Friday, March 28, 2025 Approved
Node.js LTS (Install) 18.20.7 276 Friday, February 21, 2025 Approved
Node.js LTS (Install) 18.20.6 348 Wednesday, January 22, 2025 Approved
Node.js LTS (Install) 18.20.5 136 Saturday, January 11, 2025 Approved
Node.js LTS (Install) 18.20.4 10163 Tuesday, July 9, 2024 Approved
Node.js LTS (Install) 18.20.3 16653 Wednesday, May 22, 2024 Approved
Node.js LTS (Install) 18.20.2 2413 Thursday, April 11, 2024 Approved
Node.js LTS (Install) 18.20.1 261 Thursday, April 4, 2024 Approved
Node.js LTS (Install) 18.20.0 386 Wednesday, March 27, 2024 Approved
Node.js LTS (Install) 18.19.1 3264 Thursday, February 15, 2024 Approved
Node.js LTS (Install) 18.19.0 2291 Thursday, November 30, 2023 Approved
Node.js LTS (Install) 18.18.2 22659 Saturday, October 14, 2023 Approved
Node.js LTS (Install) 18.18.1 6658 Wednesday, October 11, 2023 Approved
Node.js LTS (Install) 18.18.0 36218 Tuesday, September 19, 2023 Approved
Node.js LTS (Install) 18.17.1 59844 Thursday, August 10, 2023 Approved
Node.js LTS (Install) 18.17.0 36288 Thursday, July 20, 2023 Approved
Node.js LTS (Install) 18.16.1 49707 Wednesday, June 21, 2023 Approved
Node.js LTS (Install) 18.16.0 135491 Friday, April 14, 2023 Approved
Node.js LTS (Install) 18.15.0 136962 Wednesday, March 8, 2023 Approved
Node.js LTS (Install) 18.14.2 21720 Wednesday, February 22, 2023 Approved
Node.js LTS (Install) 18.14.1 8852 Friday, February 17, 2023 Approved
Node.js LTS (Install) 18.14.0 32052 Friday, February 3, 2023 Approved
Node.js LTS (Install) 18.13.0 36770 Friday, January 6, 2023 Approved
Node.js LTS (Install) 18.12.1 69026 Saturday, November 5, 2022 Approved
Node.js LTS (Install) 16.20.2 3533 Thursday, August 10, 2023 Approved
Node.js LTS (Install) 16.20.1 2006 Wednesday, June 21, 2023 Approved
Node.js LTS (Install) 16.20.0 1469 Thursday, March 30, 2023 Approved
Node.js LTS (Install) 16.19.1 1021 Friday, February 17, 2023 Approved
Node.js LTS (Install) 16.19.0 3687 Wednesday, December 14, 2022 Approved
Node.js LTS (Install) 16.18.1 3222 Saturday, November 5, 2022 Approved
Node.js LTS (Install) 16.18.0 76203 Thursday, October 13, 2022 Approved
Node.js LTS (Install) 16.17.1 39888 Saturday, September 24, 2022 Approved
Node.js LTS (Install) 16.17.0 47378 Wednesday, August 17, 2022 Approved
Node.js LTS (Install) 16.16.0 45509 Friday, July 8, 2022 Approved
Node.js LTS (Install) 16.15.1 50464 Thursday, June 2, 2022 Approved
Node.js LTS (Install) 16.15.0 88014 Wednesday, April 27, 2022 Approved
Node.js LTS (Install) 16.14.2 45306 Friday, March 18, 2022 Approved
Node.js LTS (Install) 16.14.0 46012 Wednesday, February 9, 2022 Approved
Node.js LTS (Install) 16.13.2 40922 Tuesday, January 11, 2022 Approved
Node.js LTS (Install) 16.13.1 24126 Wednesday, December 1, 2021 Approved
Node.js LTS (Install) 16.13.0 26364 Tuesday, October 26, 2021 Approved
Node.js LTS (Install) 14.21.3 1995 Friday, February 17, 2023 Approved
Node.js LTS (Install) 14.21.2 1236 Wednesday, December 14, 2022 Approved
Node.js LTS (Install) 14.21.1 444 Saturday, November 5, 2022 Approved
Node.js LTS (Install) 14.21.0 322 Wednesday, November 2, 2022 Approved
Node.js LTS (Install) 14.20.1 463 Saturday, September 24, 2022 Approved
Node.js LTS (Install) 14.20.0 1435 Friday, July 8, 2022 Approved
Node.js LTS (Install) 14.19.3 1535 Wednesday, May 18, 2022 Approved
Node.js LTS (Install) 14.19.2 381 Thursday, May 5, 2022 Approved
Node.js LTS (Install) 14.19.1 2217 Friday, March 18, 2022 Approved
Node.js LTS (Install) 14.19.0 926 Wednesday, February 2, 2022 Approved
Node.js LTS (Install) 14.18.3 676 Tuesday, January 11, 2022 Approved
Node.js LTS (Install) 14.18.2 851 Wednesday, December 1, 2021 Approved
Node.js LTS (Install) 14.18.1 17536 Tuesday, October 12, 2021 Approved
Node.js LTS (Install) 14.18.0 18003 Thursday, September 30, 2021 Approved
Node.js LTS (Install) 14.17.6 28374 Wednesday, September 1, 2021 Approved
Node.js LTS (Install) 14.17.5 16629 Thursday, August 12, 2021 Approved
Node.js LTS (Install) 14.17.4 20340 Friday, July 30, 2021 Approved
Node.js LTS (Install) 14.17.3 21783 Monday, July 5, 2021 Approved
Node.js LTS (Install) 14.17.2 8628 Friday, July 2, 2021 Approved
Node.js LTS (Install) 14.17.1 18976 Wednesday, June 16, 2021 Approved
Node.js LTS (Install) 14.17.0 41312 Wednesday, May 12, 2021 Approved
Node.js LTS (Install) 14.16.1 30381 Wednesday, April 7, 2021 Approved
Node.js LTS (Install) 14.16.0 45260 Tuesday, February 23, 2021 Approved
Node.js LTS (Install) 14.15.5 15355 Wednesday, February 10, 2021 Approved
Node.js LTS (Install) 14.15.4 23165 Tuesday, January 5, 2021 Approved
Node.js LTS (Install) 14.15.3 9684 Friday, December 18, 2020 Approved
Node.js LTS (Install) 14.15.2 3034 Wednesday, December 16, 2020 Approved
Node.js LTS (Install) 14.15.1 17397 Tuesday, November 17, 2020 Approved
Node.js LTS (Install) 14.15.0 16038 Wednesday, October 28, 2020 Approved
Node.js LTS (Install) 12.22.12 2178 Wednesday, April 6, 2022 Approved
Node.js LTS (Install) 12.22.11 262 Friday, March 18, 2022 Approved
Node.js LTS (Install) 12.22.10 271 Wednesday, February 2, 2022 Approved
Node.js LTS (Install) 12.22.9 273 Tuesday, January 11, 2022 Approved
Node.js LTS (Install) 12.22.8 218 Friday, December 17, 2021 Approved
Node.js LTS (Install) 12.22.7 456 Tuesday, October 12, 2021 Approved
Node.js LTS (Install) 12.22.6 334 Wednesday, September 1, 2021 Approved
Node.js LTS (Install) 12.22.5 219 Thursday, August 12, 2021 Approved
Node.js LTS (Install) 12.22.4 692 Friday, July 30, 2021 Approved
Node.js LTS (Install) 12.22.3 510 Monday, July 5, 2021 Approved
Node.js LTS (Install) 12.22.2 327 Friday, July 2, 2021 Approved
Node.js LTS (Install) 12.22.1 1118 Wednesday, April 7, 2021 Approved
Node.js LTS (Install) 12.22.0 372 Tuesday, March 30, 2021 Approved
Node.js LTS (Install) 12.21.0 1778 Tuesday, February 23, 2021 Approved
Node.js LTS (Install) 12.20.2 445 Thursday, February 11, 2021 Approved
Node.js LTS (Install) 12.20.1 1542 Tuesday, January 5, 2021 Approved
Node.js LTS (Install) 12.20.0 1349 Wednesday, November 25, 2020 Approved
Node.js LTS (Install) 12.19.1 628 Tuesday, November 17, 2020 Approved
Node.js LTS (Install) 12.19.0 67758 Wednesday, October 7, 2020 Approved
Node.js LTS (Install) 12.18.4 23897 Wednesday, September 16, 2020 Approved
Node.js LTS (Install) 12.18.3 42192 Thursday, July 23, 2020 Approved
Node.js LTS (Install) 12.18.2 17231 Wednesday, July 1, 2020 Approved
Node.js LTS (Install) 12.18.1 14288 Thursday, June 18, 2020 Approved
Node.js LTS (Install) 12.18.0 14287 Wednesday, June 3, 2020 Approved
Node.js LTS (Install) 12.17.0 7350 Wednesday, May 27, 2020 Approved
Node.js LTS (Install) 12.16.3 17229 Wednesday, April 29, 2020 Approved
Node.js LTS (Install) 12.16.2 32821 Thursday, April 9, 2020 Approved
Node.js LTS (Install) 12.16.1 62307 Wednesday, February 19, 2020 Approved
Node.js LTS (Install) 12.16.0 8721 Wednesday, February 12, 2020 Approved
Node.js LTS (Install) 12.15.0 6474 Friday, February 7, 2020 Approved
Node.js LTS (Install) 12.14.1 36023 Wednesday, January 8, 2020 Approved
Node.js LTS (Install) 12.14.0 8255 Wednesday, December 18, 2019 Approved
Node.js LTS (Install) 12.13.1 17208 Wednesday, November 20, 2019 Approved
Node.js LTS (Install) 12.13.0 15742 Tuesday, October 22, 2019 Approved
Node.js LTS (Install) 10.24.1 709 Wednesday, April 7, 2021 Approved
Node.js LTS (Install) 10.24.0 494 Tuesday, February 23, 2021 Approved
Node.js LTS (Install) 10.23.3 335 Wednesday, February 10, 2021 Approved
Node.js LTS (Install) 10.23.2 243 Wednesday, January 27, 2021 Approved
Node.js LTS (Install) 10.23.1 274 Tuesday, January 5, 2021 Approved
Node.js LTS (Install) 10.23.0 869 Wednesday, October 28, 2020 Approved
Node.js LTS (Install) 10.22.1 393 Wednesday, September 16, 2020 Approved
Node.js LTS (Install) 10.22.0 468 Wednesday, July 22, 2020 Approved
Node.js LTS (Install) 10.21.0 939 Wednesday, June 3, 2020 Approved
Node.js LTS (Install) 10.20.1 568 Monday, April 13, 2020 Approved
Node.js LTS (Install) 10.20.0 432 Thursday, April 9, 2020 Approved
Node.js LTS (Install) 10.19.0 1681 Friday, February 7, 2020 Approved
Node.js LTS (Install) 10.18.1 603 Friday, January 31, 2020 Approved
Node.js LTS (Install) 10.16.3 49324 Friday, August 16, 2019 Approved
Node.js LTS (Install) 10.16.2 4677 Wednesday, August 7, 2019 Approved
Node.js LTS (Install) 10.16.1 3893 Thursday, August 1, 2019 Approved
Node.js LTS (Install) 10.16.0 27278 Wednesday, May 29, 2019 Approved
Node.js LTS (Install) 10.15.3 116227 Wednesday, March 6, 2019 Approved
Node.js LTS (Install) 10.15.2 3318 Thursday, February 28, 2019 Approved
Node.js LTS (Install) 10.15.1 22997 Thursday, January 31, 2019 Approved
Node.js LTS (Install) 10.15.0 23300 Thursday, December 27, 2018 Approved
Node.js LTS (Install) 10.14.2 10768 Wednesday, December 12, 2018 Approved
Node.js LTS (Install) 10.14.1 11510 Friday, November 30, 2018 Approved
Node.js LTS (Install) 10.14.0 2854 Wednesday, November 28, 2018 Approved
Node.js LTS (Install) 10.13.0 51033 Wednesday, October 31, 2018 Approved
Node.js LTS (Install) 8.17.0 872 Wednesday, December 18, 2019 Approved
Node.js LTS (Install) 8.16.2 367 Thursday, October 10, 2019 Approved
Node.js LTS (Install) 8.16.1 403 Friday, August 16, 2019 Approved
Node.js LTS (Install) 8.16.0 896 Wednesday, April 17, 2019 Approved
Node.js LTS (Install) 8.15.1 5439 Thursday, February 28, 2019 Approved
Node.js LTS (Install) 8.15.0 1015 Thursday, December 27, 2018 Approved
Node.js LTS (Install) 8.14.1 405 Wednesday, December 19, 2018 Approved
Node.js LTS (Install) 8.14.0 10558 Wednesday, November 28, 2018 Approved
Node.js LTS (Install) 8.13.0 425 Wednesday, November 21, 2018 Approved
Node.js LTS (Install) 8.12.0 45873 Friday, September 14, 2018 Approved
Node.js LTS (Install) 8.11.4 21954 Thursday, August 16, 2018 Approved
Node.js LTS (Install) 8.11.3 24003 Wednesday, June 13, 2018 Approved
Node.js LTS (Install) 8.11.2 10202 Wednesday, May 16, 2018 Approved
Node.js LTS (Install) 8.11.1 18984 Monday, April 2, 2018 Approved
Node.js LTS (Install) 8.11.0 1576 Friday, March 30, 2018 Approved
Node.js LTS (Install) 8.10.0 4872 Thursday, March 8, 2018 Approved
Node.js LTS (Install) 8.9.4 56092 Thursday, January 4, 2018 Approved
Node.js LTS (Install) 8.9.3 4580 Friday, December 8, 2017 Approved
Node.js LTS (Install) 8.9.2 1513 Wednesday, December 6, 2017 Approved
Node.js LTS (Install) 8.9.1 8456 Wednesday, November 8, 2017 Approved
Node.js LTS (Install) 8.9.0 3037 Tuesday, October 31, 2017 Approved
Node.js LTS (Install) 6.17.1 427 Thursday, April 4, 2019 Approved
Node.js LTS (Install) 6.17.0 282 Thursday, February 28, 2019 Approved
Node.js LTS (Install) 6.16.0 487 Thursday, December 27, 2018 Approved
Node.js LTS (Install) 6.15.1 383 Monday, December 3, 2018 Approved
Node.js LTS (Install) 6.15.0 337 Wednesday, November 28, 2018 Approved
Node.js LTS (Install) 6.14.4 691 Friday, August 17, 2018 Approved
Node.js LTS (Install) 6.14.3 393 Friday, June 15, 2018 Approved
Node.js LTS (Install) 6.14.2 469 Wednesday, May 2, 2018 Approved
Node.js LTS (Install) 6.14.1 534 Wednesday, April 4, 2018 Approved
Node.js LTS (Install) 6.13.1 497 Thursday, March 8, 2018 Approved
Node.js LTS (Install) 6.13.0 771 Wednesday, February 14, 2018 Approved
Node.js LTS (Install) 6.12.3 739 Wednesday, January 3, 2018 Approved
Node.js LTS (Install) 6.12.2 2226 Friday, December 8, 2017 Approved
Node.js LTS (Install) 6.12.1 453 Friday, December 8, 2017 Approved
Node.js LTS (Install) 6.12.0 927 Wednesday, November 8, 2017 Approved
Node.js LTS (Install) 6.11.5 3092 Wednesday, October 25, 2017 Approved
Node.js LTS (Install) 6.11.4 4438 Wednesday, October 4, 2017 Approved
Node.js LTS (Install) 6.11.3 6268 Wednesday, September 6, 2017 Approved
Node.js LTS (Install) 6.11.2 8457 Tuesday, August 1, 2017 Approved
Node.js LTS (Install) 6.11.1 4413 Wednesday, July 12, 2017 Approved
Node.js LTS (Install) 6.11.0 7661 Wednesday, June 7, 2017 Approved
Node.js LTS (Install) 6.10.3 6873 Wednesday, May 3, 2017 Approved
Node.js LTS (Install) 6.10.2 3064 Wednesday, April 5, 2017 Approved
Node.js LTS (Install) 6.10.1 1563 Wednesday, March 22, 2017 Approved
Node.js LTS (Install) 6.10.0 3116 Wednesday, February 22, 2017 Approved
Node.js LTS (Install) 6.9.5 1648 Wednesday, February 1, 2017 Approved
Node.js LTS (Install) 6.9.4 1747 Friday, January 6, 2017 Approved
Node.js LTS (Install) 6.9.3 1032 Wednesday, January 4, 2017 Approved
Node.js LTS (Install) 6.9.2 7879 Thursday, December 8, 2016 Approved

This package has no dependencies.

Discussion for the Node.js LTS (Install) Package

Ground Rules:

  • This discussion is only about Node.js LTS (Install) and the Node.js LTS (Install) package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or Node.js LTS (Install), or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus