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:

8,383,294

Downloads of v 7.0.0:

19,285

Last Update:

25 Oct 2016

Package Maintainer(s):

Software Author(s):

  • Joyent

Tags:

nodejs node javascript admin npm

Node JS (Install)

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

  • 1
  • 2
  • 3

7.0.0 | Updated: 25 Oct 2016

Downloads:

8,383,294

Downloads of v 7.0.0:

19,285

Maintainer(s):

Software Author(s):

  • Joyent

Node JS (Install) 7.0.0

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

Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Joyent. The inclusion of Joyent trademark(s), if any, upon this webpage is solely to identify Joyent 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 (Install), run the following command from the command line or from PowerShell:

>

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

>

To uninstall Node JS (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.install -y --source="'INTERNAL REPO URL'" --version="'7.0.0'" [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.install -y --source="'INTERNAL REPO URL'" --version="'7.0.0'" 
$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.install
  win_chocolatey:
    name: nodejs.install
    version: '7.0.0'
    source: INTERNAL REPO URL
    state: present

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


chocolatey_package 'nodejs.install' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '7.0.0'
end

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


cChocoPackageInstaller nodejs.install
{
    Name     = "nodejs.install"
    Version  = "7.0.0"
    Source   = "INTERNAL REPO URL"
}

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


package { 'nodejs.install':
  ensure   => '7.0.0',
  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.

NOTE

Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...

NOTE

This package is likely a meta/virtual (*) or an installer (*.install) or portable (*.portable) application package.

  • Meta/virtual (*) - has a dependency on the *.install or the *.portable package - it is provided for discoverability and for other packages to take a dependency on.
  • Portable (*.portable/*.commandline (deprecated naming convention)/*.tool (deprecated naming convention)) - usually zips or archives that require no administrative access to install.
  • Install (*.install/*.app (deprecated naming convention)) - uses native installers, usually requires administrative access to install.

Learn more about chocolatey's distinction of installed versus portable apps and/or learn about this kind of package.

Package Approved

This package was approved as a trusted package on 25 Oct 2016.

Description

Node JS - Evented I/O for v8 JavaScript. Node's goal is to provide an easy way to build scalable network programs.

This package runs the official Node JS installer, resulting in Node.exe and NPM being installed under Program Files, and added to the SYSTEM PATH environment variable.


tools\chocolateyInstall.ps1
$packageName = 'nodejs.install'
$installerType = 'msi'
$url = 'https://nodejs.org/dist/v7.0.0/node-v7.0.0-x86.msi'
$url64 = 'https://nodejs.org/dist/v7.0.0/node-v7.0.0-x64.msi'
$silentArgs = '/quiet'
$validExitCodes = @(0)

Install-ChocolateyPackage "$packageName" "$installerType" "$silentArgs" "$url" "$url64"  -validExitCodes $validExitCodes

$nodePath = "$env:SystemDrive\Program Files\nodejs"
if (![System.IO.Directory]::Exists($nodePath)) {$nodePath = "$env:SystemDrive\Program Files (x86)\nodejs";}

$env:Path = "$($env:Path);$nodePath"

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 (Install) 24.0.1 14594 Friday, May 9, 2025 Approved
Node JS (Install) 24.0.0 6381 Tuesday, May 6, 2025 Approved
Node JS (Install) 23.11.1 13 Thursday, May 15, 2025 Approved
Node JS (Install) 23.11.0 49243 Tuesday, April 1, 2025 Approved
Node JS (Install) 23.10.0 33003 Friday, March 14, 2025 Approved
Node JS (Install) 23.9.0 29237 Wednesday, February 26, 2025 Approved
Node JS (Install) 23.8.0 24550 Thursday, February 13, 2025 Approved
Node JS (Install) 23.7.0 23448 Thursday, January 30, 2025 Approved
Node JS (Install) 23.6.1 17676 Tuesday, January 21, 2025 Approved
Node JS (Install) 23.6.0 22422 Tuesday, January 7, 2025 Approved
Node JS (Install) 23.5.0 23365 Friday, December 20, 2024 Approved
Node JS (Install) 23.4.0 20118 Tuesday, December 10, 2024 Approved
Node JS (Install) 23.3.0 28002 Thursday, November 21, 2024 Approved
Node JS (Install) 23.2.0 17647 Tuesday, November 12, 2024 Approved
Node JS (Install) 23.1.0 1090 Monday, November 11, 2024 Approved
Node JS (Install) 22.15.1 63 Thursday, May 15, 2025 Approved
Node JS (Install) 22.15.0 356 Friday, May 2, 2025 Approved
Node JS (Install) 22.14.0 3857 Tuesday, February 11, 2025 Approved
Node JS (Install) 22.13.1 1471 Tuesday, January 21, 2025 Approved
Node JS (Install) 22.13.0 1225 Wednesday, January 8, 2025 Approved
Node JS (Install) 22.12.0 2102 Wednesday, December 4, 2024 Approved
Node JS (Install) 22.11.0 2603 Monday, November 11, 2024 Approved
Node JS (Install) 22.9.0 66746 Wednesday, September 18, 2024 Approved
Node JS (Install) 22.8.0 24932 Tuesday, September 3, 2024 Approved
Node JS (Install) 22.7.0 21260 Thursday, August 22, 2024 Approved
Node JS (Install) 22.6.0 25104 Tuesday, August 6, 2024 Approved
Node JS (Install) 22.5.1 27440 Friday, July 19, 2024 Approved
Node JS (Install) 22.5.0 6339 Wednesday, July 17, 2024 Approved
Node JS (Install) 22.4.1 36638 Tuesday, July 9, 2024 Approved
Node JS (Install) 22.4.0 12798 Tuesday, July 2, 2024 Approved
Node JS (Install) 22.3.0 33675 Wednesday, June 12, 2024 Approved
Node JS (Install) 22.2.0 40514 Thursday, May 16, 2024 Approved
Node JS (Install) 22.1.0 26763 Thursday, May 2, 2024 Approved
Node JS (Install) 22.0.0 17119 Thursday, April 25, 2024 Approved
Node JS (Install) 21.7.3 4472 Thursday, April 25, 2024 Approved
Node JS (Install) 21.7.1 63943 Saturday, March 9, 2024 Approved
Node JS (Install) 21.7.0 6207 Thursday, March 7, 2024 Approved
Node JS (Install) 21.6.2 43117 Thursday, February 15, 2024 Approved
Node JS (Install) 21.6.1 43665 Tuesday, January 23, 2024 Approved
Node JS (Install) 21.6.0 16015 Monday, January 15, 2024 Approved
Node JS (Install) 21.5.0 14630 Wednesday, December 20, 2023 Approved
Node JS (Install) 21.4.0 82463 Tuesday, December 5, 2023 Approved
Node JS (Install) 21.3.0 12444 Friday, December 1, 2023 Approved
Node JS (Install) 21.2.0 46377 Tuesday, November 14, 2023 Approved
Node JS (Install) 21.1.0 57961 Tuesday, October 24, 2023 Approved
Node JS (Install) 21.0.0 22076 Tuesday, October 17, 2023 Approved
Node JS (Install) 20.19.2 18 Thursday, May 15, 2025 Approved
Node JS (Install) 20.19.1 50 Friday, May 2, 2025 Approved
Node JS (Install) 20.19.0 386 Thursday, March 13, 2025 Approved
Node JS (Install) 20.18.3 434 Monday, February 10, 2025 Approved
Node JS (Install) 20.18.2 279 Tuesday, January 21, 2025 Approved
Node JS (Install) 20.18.1 1468 Wednesday, November 20, 2024 Approved
Node JS (Install) 20.18.0 3375 Thursday, October 3, 2024 Approved
Node JS (Install) 20.17.0 32159 Wednesday, August 21, 2024 Approved
Node JS (Install) 20.16.0 3830 Wednesday, July 24, 2024 Approved
Node JS (Install) 20.15.1 616 Monday, July 8, 2024 Approved
Node JS (Install) 20.15.0 1105 Thursday, June 20, 2024 Approved
Node JS (Install) 20.14.0 1781 Tuesday, May 28, 2024 Approved
Node JS (Install) 20.13.1 11578 Thursday, May 9, 2024 Approved
Node JS (Install) 20.13.0 365 Tuesday, May 7, 2024 Approved
Node JS (Install) 20.12.2 12537 Thursday, April 25, 2024 Approved
Node JS (Install) 20.11.1 7047 Thursday, February 15, 2024 Approved
Node JS (Install) 20.11.0 3218 Wednesday, January 10, 2024 Approved
Node JS (Install) 20.10.0 4513 Wednesday, November 22, 2023 Approved
Node JS (Install) 20.9.0 3994 Tuesday, October 24, 2023 Approved
Node JS (Install) 20.8.1 12839 Saturday, October 14, 2023 Approved
Node JS (Install) 20.8.0 21790 Friday, September 29, 2023 Approved
Node JS (Install) 20.7.0 94601 Tuesday, September 19, 2023 Approved
Node JS (Install) 20.6.1 9614 Friday, September 8, 2023 Approved
Node JS (Install) 20.6.0 38092 Tuesday, September 5, 2023 Approved
Node JS (Install) 20.5.1 36490 Wednesday, August 9, 2023 Approved
Node JS (Install) 20.5.0 31101 Friday, July 21, 2023 Approved
Node JS (Install) 20.4.0 27716 Wednesday, July 5, 2023 Approved
Node JS (Install) 20.3.1 18875 Monday, June 26, 2023 Approved
Node JS (Install) 20.3.0 26909 Thursday, June 8, 2023 Approved
Node JS (Install) 20.2.0 38635 Wednesday, May 17, 2023 Approved
Node JS (Install) 20.1.0 24406 Thursday, May 4, 2023 Approved
Node JS (Install) 20.0.0 30308 Tuesday, April 18, 2023 Approved
Node JS (Install) 19.9.0 32842 Tuesday, April 11, 2023 Approved
Node JS (Install) 19.8.1 37158 Thursday, March 16, 2023 Approved
Node JS (Install) 19.8.0 5553 Wednesday, March 15, 2023 Approved
Node JS (Install) 19.7.0 35134 Wednesday, February 22, 2023 Approved
Node JS (Install) 19.6.1 3323 Friday, February 17, 2023 Approved
Node JS (Install) 19.6.0 71356 Thursday, February 2, 2023 Approved
Node JS (Install) 19.5.0 16259 Wednesday, January 25, 2023 Approved
Node JS (Install) 19.4.0 25625 Friday, January 6, 2023 Approved
Node JS (Install) 19.3.0 16111 Thursday, December 15, 2022 Approved
Node JS (Install) 19.2.0 35003 Wednesday, November 30, 2022 Approved
Node JS (Install) 19.1.0 20274 Tuesday, November 15, 2022 Approved
Node JS (Install) 19.0.0 24235 Friday, November 4, 2022 Approved
Node JS (Install) 18.20.8 366 Thursday, March 27, 2025 Approved
Node JS (Install) 18.20.7 1064 Thursday, February 20, 2025 Approved
Node JS (Install) 18.20.6 524 Tuesday, January 21, 2025 Approved
Node JS (Install) 18.20.5 16359 Wednesday, November 13, 2024 Approved
Node JS (Install) 18.20.3 13389 Tuesday, May 21, 2024 Approved
Node JS (Install) 18.20.2 3397 Thursday, April 25, 2024 Approved
Node JS (Install) 18.18.2 36359 Saturday, October 14, 2023 Approved
Node JS (Install) 18.18.1 19630 Wednesday, October 11, 2023 Approved
Node JS (Install) 18.18.0 15454 Tuesday, September 19, 2023 Approved
Node JS (Install) 18.17.1 20886 Wednesday, August 9, 2023 Approved
Node JS (Install) 18.17.0 7410 Wednesday, July 19, 2023 Approved
Node JS (Install) 18.16.1 10129 Monday, June 26, 2023 Approved
Node JS (Install) 18.16.0 15164 Thursday, April 13, 2023 Approved
Node JS (Install) 18.15.0 13937 Wednesday, March 8, 2023 Approved
Node JS (Install) 18.14.2 3637 Wednesday, February 22, 2023 Approved
Node JS (Install) 18.14.1 865 Friday, February 17, 2023 Approved
Node JS (Install) 18.14.0 929 Friday, February 3, 2023 Approved
Node JS (Install) 18.13.0 1872 Friday, January 6, 2023 Approved
Node JS (Install) 18.12.1 12722 Saturday, November 5, 2022 Approved
Node JS (Install) 18.12.0 22328 Wednesday, October 26, 2022 Approved
Node JS (Install) 18.11.0 28102 Friday, October 14, 2022 Approved
Node JS (Install) 18.10.0 32130 Wednesday, September 28, 2022 Approved
Node JS (Install) 18.9.1 10697 Friday, September 23, 2022 Approved
Node JS (Install) 18.9.0 23447 Thursday, September 8, 2022 Approved
Node JS (Install) 18.8.0 22024 Wednesday, August 24, 2022 Approved
Node JS (Install) 18.7.0 40167 Wednesday, July 27, 2022 Approved
Node JS (Install) 18.6.0 21815 Thursday, July 14, 2022 Approved
Node JS (Install) 18.5.0 12556 Thursday, July 7, 2022 Approved
Node JS (Install) 18.4.0 28970 Thursday, June 16, 2022 Approved
Node JS (Install) 18.3.0 23133 Thursday, June 2, 2022 Approved
Node JS (Install) 17.9.1 1893 Thursday, June 2, 2022 Approved
Node JS (Install) 17.9.0 62927 Friday, April 8, 2022 Approved
Node JS (Install) 17.8.0 25582 Tuesday, March 22, 2022 Approved
Node JS (Install) 17.7.2 9763 Friday, March 18, 2022 Approved
Node JS (Install) 17.7.1 14299 Friday, March 11, 2022 Approved
Node JS (Install) 17.7.0 4739 Wednesday, March 9, 2022 Approved
Node JS (Install) 17.6.0 22474 Wednesday, February 23, 2022 Approved
Node JS (Install) 17.5.0 28059 Friday, February 11, 2022 Approved
Node JS (Install) 17.4.0 34019 Tuesday, January 18, 2022 Approved
Node JS (Install) 17.3.1 17494 Tuesday, January 11, 2022 Approved
Node JS (Install) 17.3.0 33401 Saturday, December 18, 2021 Approved
Node JS (Install) 17.2.0 28777 Tuesday, November 30, 2021 Approved
Node JS (Install) 17.1.0 36686 Wednesday, November 10, 2021 Approved
Node JS (Install) 17.0.1 36921 Thursday, October 21, 2021 Approved
Node JS (Install) 17.0.0 4511 Tuesday, October 19, 2021 Approved
Node JS (Install) 16.20.1 7435 Monday, June 26, 2023 Approved
Node JS (Install) 16.20.0 20817 Thursday, March 30, 2023 Approved
Node JS (Install) 16.19.1 2803 Friday, February 17, 2023 Approved
Node JS (Install) 16.19.0 7766 Tuesday, December 13, 2022 Approved
Node JS (Install) 16.18.1 11062 Friday, November 4, 2022 Approved
Node JS (Install) 16.18.0 6829 Wednesday, October 12, 2022 Approved
Node JS (Install) 16.17.1 11429 Friday, September 23, 2022 Approved
Node JS (Install) 16.17.0 27766 Tuesday, August 16, 2022 Approved
Node JS (Install) 16.16.0 23478 Thursday, July 7, 2022 Approved
Node JS (Install) 16.15.1 7542 Thursday, June 2, 2022 Approved
Node JS (Install) 16.14.2 16356 Friday, March 18, 2022 Approved
Node JS (Install) 16.14.1 582 Wednesday, March 16, 2022 Approved
Node JS (Install) 16.14.0 29914 Wednesday, February 9, 2022 Approved
Node JS (Install) 16.13.2 13653 Tuesday, January 11, 2022 Approved
Node JS (Install) 16.13.1 10113 Wednesday, December 1, 2021 Approved
Node JS (Install) 16.13.0 8556 Tuesday, October 26, 2021 Approved
Node JS (Install) 16.12.0 1441 Wednesday, October 20, 2021 Approved
Node JS (Install) 16.11.1 18560 Tuesday, October 12, 2021 Approved
Node JS (Install) 16.11.0 10562 Friday, October 8, 2021 Approved
Node JS (Install) 16.10.0 55248 Thursday, September 23, 2021 Approved
Node JS (Install) 16.9.1 38785 Saturday, September 11, 2021 Approved
Node JS (Install) 16.9.0 9534 Tuesday, September 7, 2021 Approved
Node JS (Install) 16.8.0 24506 Thursday, August 26, 2021 Approved
Node JS (Install) 16.7.0 22312 Wednesday, August 18, 2021 Approved
Node JS (Install) 16.6.2 15269 Wednesday, August 11, 2021 Approved
Node JS (Install) 16.6.1 87813 Tuesday, August 3, 2021 Approved
Node JS (Install) 16.6.0 10825 Friday, July 30, 2021 Approved
Node JS (Install) 16.5.0 31751 Wednesday, July 14, 2021 Approved
Node JS (Install) 16.4.2 20350 Monday, July 5, 2021 Approved
Node JS (Install) 16.4.1 12005 Thursday, July 1, 2021 Approved
Node JS (Install) 16.4.0 27988 Wednesday, June 23, 2021 Approved
Node JS (Install) 16.3.0 39539 Thursday, June 3, 2021 Approved
Node JS (Install) 16.2.0 35602 Wednesday, May 19, 2021 Approved
Node JS (Install) 16.1.0 30317 Tuesday, May 4, 2021 Approved
Node JS (Install) 16.0.0 34064 Tuesday, April 20, 2021 Approved
Node JS (Install) 15.14.0 35811 Wednesday, April 7, 2021 Approved
Node JS (Install) 15.13.0 12283 Wednesday, March 31, 2021 Approved
Node JS (Install) 15.12.0 32525 Thursday, March 18, 2021 Approved
Node JS (Install) 15.11.0 35223 Wednesday, March 3, 2021 Approved
Node JS (Install) 15.10.0 21606 Tuesday, February 23, 2021 Approved
Node JS (Install) 15.9.0 15256 Thursday, February 18, 2021 Approved
Node JS (Install) 15.8.0 37560 Wednesday, February 3, 2021 Approved
Node JS (Install) 15.7.0 17917 Tuesday, January 26, 2021 Approved
Node JS (Install) 15.6.0 22515 Friday, January 15, 2021 Approved
Node JS (Install) 15.5.1 32499 Tuesday, January 5, 2021 Approved
Node JS (Install) 15.5.0 24555 Wednesday, December 23, 2020 Approved
Node JS (Install) 15.4.0 29458 Wednesday, December 9, 2020 Approved
Node JS (Install) 15.3.0 37924 Tuesday, November 24, 2020 Approved
Node JS (Install) 15.2.1 17129 Monday, November 16, 2020 Approved
Node JS (Install) 15.2.0 17191 Wednesday, November 11, 2020 Approved
Node JS (Install) 15.1.0 25049 Thursday, November 5, 2020 Approved
Node JS (Install) 15.0.1 33368 Thursday, October 22, 2020 Approved
Node JS (Install) 15.0.0 6929 Tuesday, October 20, 2020 Approved
Node JS (Install) 14.21.3 8754 Friday, February 17, 2023 Approved
Node JS (Install) 14.21.2 1261 Tuesday, December 13, 2022 Approved
Node JS (Install) 14.21.1 1030 Friday, November 4, 2022 Approved
Node JS (Install) 14.21.0 319 Wednesday, November 2, 2022 Approved
Node JS (Install) 14.20.1 769 Friday, September 23, 2022 Approved
Node JS (Install) 14.20.0 5608 Thursday, July 7, 2022 Approved
Node JS (Install) 14.19.3 1089 Thursday, June 2, 2022 Approved
Node JS (Install) 14.19.1 24363 Friday, March 18, 2022 Approved
Node JS (Install) 14.19.0 4487 Tuesday, February 1, 2022 Approved
Node JS (Install) 14.18.3 5747 Tuesday, January 11, 2022 Approved
Node JS (Install) 14.18.2 4715 Tuesday, November 30, 2021 Approved
Node JS (Install) 14.18.1 8089 Tuesday, October 12, 2021 Approved
Node JS (Install) 14.18.0 4571 Tuesday, September 28, 2021 Approved
Node JS (Install) 14.17.5 10808 Wednesday, August 11, 2021 Approved
Node JS (Install) 14.17.4 533 Thursday, July 29, 2021 Approved
Node JS (Install) 14.17.3 3264 Monday, July 5, 2021 Approved
Node JS (Install) 14.17.2 327 Thursday, July 1, 2021 Approved
Node JS (Install) 14.17.1 1051 Tuesday, June 15, 2021 Approved
Node JS (Install) 14.17.0 19382 Wednesday, May 12, 2021 Approved
Node JS (Install) 14.16.1 7917 Wednesday, April 7, 2021 Approved
Node JS (Install) 14.15.5 3697 Tuesday, February 9, 2021 Approved
Node JS (Install) 14.15.4 19420 Tuesday, January 5, 2021 Approved
Node JS (Install) 14.15.3 1524 Friday, December 18, 2020 Approved
Node JS (Install) 14.15.2 511 Wednesday, December 16, 2020 Approved
Node JS (Install) 14.15.1 2280 Monday, November 16, 2020 Approved
Node JS (Install) 14.15.0 11970 Tuesday, October 27, 2020 Approved
Node JS (Install) 14.14.0 10795 Friday, October 16, 2020 Approved
Node JS (Install) 14.13.1 27560 Thursday, October 8, 2020 Approved
Node JS (Install) 14.13.0 21719 Wednesday, September 30, 2020 Approved
Node JS (Install) 14.12.0 20403 Wednesday, September 23, 2020 Approved
Node JS (Install) 14.11.0 19833 Wednesday, September 16, 2020 Approved
Node JS (Install) 14.10.1 15030 Thursday, September 10, 2020 Approved
Node JS (Install) 14.10.0 8078 Tuesday, September 8, 2020 Approved
Node JS (Install) 14.8.0 60188 Tuesday, August 11, 2020 Approved
Node JS (Install) 14.7.0 27821 Friday, July 31, 2020 Approved
Node JS (Install) 14.6.0 24032 Wednesday, July 22, 2020 Approved
Node JS (Install) 14.5.0 44800 Wednesday, July 1, 2020 Approved
Node JS (Install) 14.4.0 55598 Wednesday, June 3, 2020 Approved
Node JS (Install) 14.3.0 30062 Wednesday, May 20, 2020 Approved
Node JS (Install) 14.2.0 33812 Wednesday, May 6, 2020 Approved
Node JS (Install) 14.1.0 12367 Thursday, April 30, 2020 Approved
Node JS (Install) 14.0.0 25159 Wednesday, April 22, 2020 Approved
Node JS (Install) 13.14.0 45483 Tuesday, June 2, 2020 Approved
Node JS (Install) 13.13.0 19347 Wednesday, April 15, 2020 Approved
Node JS (Install) 13.12.0 42785 Friday, March 27, 2020 Approved
Node JS (Install) 13.11.0 29112 Thursday, March 12, 2020 Approved
Node JS (Install) 13.10.1 21334 Thursday, March 5, 2020 Approved
Node JS (Install) 13.9.0 31994 Wednesday, February 19, 2020 Approved
Node JS (Install) 13.7.0 47169 Wednesday, January 22, 2020 Approved
Node JS (Install) 13.6.0 18802 Wednesday, January 8, 2020 Approved
Node JS (Install) 13.5.0 38209 Friday, December 20, 2019 Approved
Node JS (Install) 13.3.0 25976 Thursday, December 5, 2019 Approved
Node JS (Install) 13.2.0 25649 Friday, November 22, 2019 Approved
Node JS (Install) 13.1.0 21619 Monday, November 11, 2019 Approved
Node JS (Install) 13.0.1 36493 Wednesday, October 23, 2019 Approved
Node JS (Install) 13.0.0 5974 Tuesday, October 22, 2019 Approved
Node JS (Install) 12.22.12 3556 Tuesday, April 5, 2022 Approved
Node JS (Install) 12.22.11 453 Friday, March 18, 2022 Approved
Node JS (Install) 12.22.10 365 Wednesday, February 2, 2022 Approved
Node JS (Install) 12.22.9 853 Tuesday, January 11, 2022 Approved
Node JS (Install) 12.22.8 293 Friday, December 17, 2021 Approved
Node JS (Install) 12.22.7 1315 Tuesday, October 12, 2021 Approved
Node JS (Install) 12.22.6 2105 Tuesday, August 31, 2021 Approved
Node JS (Install) 12.22.5 554 Wednesday, August 11, 2021 Approved
Node JS (Install) 12.22.4 240 Thursday, July 29, 2021 Approved
Node JS (Install) 12.22.3 676 Monday, July 5, 2021 Approved
Node JS (Install) 12.22.2 211 Thursday, July 1, 2021 Approved
Node JS (Install) 12.22.1 3175 Wednesday, April 7, 2021 Approved
Node JS (Install) 12.22.0 8361 Tuesday, March 30, 2021 Approved
Node JS (Install) 12.21.0 5348 Tuesday, February 23, 2021 Approved
Node JS (Install) 12.20.2 645 Thursday, February 11, 2021 Approved
Node JS (Install) 12.20.1 8874 Tuesday, January 5, 2021 Approved
Node JS (Install) 12.20.0 1760 Tuesday, November 24, 2020 Approved
Node JS (Install) 12.19.1 574 Monday, November 16, 2020 Approved
Node JS (Install) 12.19.0 4047 Wednesday, October 7, 2020 Approved
Node JS (Install) 12.18.4 1913 Wednesday, September 16, 2020 Approved
Node JS (Install) 12.18.3 14994 Wednesday, July 22, 2020 Approved
Node JS (Install) 12.18.2 2356 Tuesday, June 30, 2020 Approved
Node JS (Install) 12.18.1 1181 Wednesday, June 17, 2020 Approved
Node JS (Install) 12.18.0 2782 Wednesday, June 3, 2020 Approved
Node JS (Install) 12.17.0 2439 Tuesday, May 26, 2020 Approved
Node JS (Install) 12.16.3 5995 Tuesday, April 28, 2020 Approved
Node JS (Install) 12.16.2 2481 Thursday, April 9, 2020 Approved
Node JS (Install) 12.16.1 10875 Wednesday, February 19, 2020 Approved
Node JS (Install) 12.16.0 2922 Wednesday, February 12, 2020 Approved
Node JS (Install) 12.15.0 4789 Thursday, February 6, 2020 Approved
Node JS (Install) 12.14.1 22632 Tuesday, January 7, 2020 Approved
Node JS (Install) 12.14.0 3284 Wednesday, December 18, 2019 Approved
Node JS (Install) 12.13.1 7790 Tuesday, November 19, 2019 Approved
Node JS (Install) 12.13.0 22999 Monday, October 21, 2019 Approved
Node JS (Install) 12.12.0 19717 Saturday, October 12, 2019 Approved
Node JS (Install) 12.11.1 22021 Tuesday, October 1, 2019 Approved
Node JS (Install) 12.11.0 15001 Thursday, September 26, 2019 Approved
Node JS (Install) 12.10.0 45756 Thursday, September 5, 2019 Approved
Node JS (Install) 12.9.1 33835 Tuesday, August 27, 2019 Approved
Node JS (Install) 12.9.0 14800 Wednesday, August 21, 2019 Approved
Node JS (Install) 12.8.1 13685 Thursday, August 15, 2019 Approved
Node JS (Install) 12.8.0 24056 Wednesday, August 7, 2019 Approved
Node JS (Install) 12.7.0 24664 Wednesday, July 24, 2019 Approved
Node JS (Install) 12.6.0 34334 Wednesday, July 3, 2019 Approved
Node JS (Install) 12.5.0 11977 Thursday, June 27, 2019 Approved
Node JS (Install) 12.4.0 40570 Tuesday, June 4, 2019 Approved
Node JS (Install) 12.3.1 22643 Wednesday, May 22, 2019 Approved
Node JS (Install) 12.3.0 1857 Wednesday, May 22, 2019 Approved
Node JS (Install) 12.2.0 24346 Wednesday, May 8, 2019 Approved
Node JS (Install) 12.1.0 26180 Monday, April 29, 2019 Approved
Node JS (Install) 12.0.0 13703 Tuesday, April 23, 2019 Approved
Node JS (Install) 11.15.0 8670 Tuesday, April 30, 2019 Approved
Node JS (Install) 11.14.0 21585 Thursday, April 11, 2019 Approved
Node JS (Install) 11.13.0 26071 Friday, March 29, 2019 Approved
Node JS (Install) 11.12.0 22411 Saturday, March 16, 2019 Approved
Node JS (Install) 11.11.0 17251 Thursday, March 7, 2019 Approved
Node JS (Install) 11.10.1 13038 Thursday, February 28, 2019 Approved
Node JS (Install) 11.10.0 21711 Friday, February 15, 2019 Approved
Node JS (Install) 11.9.0 27102 Thursday, January 31, 2019 Approved
Node JS (Install) 11.8.0 10576 Friday, January 25, 2019 Approved
Node JS (Install) 11.7.0 11512 Friday, January 18, 2019 Approved
Node JS (Install) 11.6.0 32808 Wednesday, December 26, 2018 Approved
Node JS (Install) 11.5.0 9953 Wednesday, December 19, 2018 Approved
Node JS (Install) 11.4.0 16417 Friday, December 7, 2018 Approved
Node JS (Install) 11.3.0 14239 Wednesday, November 28, 2018 Approved
Node JS (Install) 11.2.0 4181 Monday, November 26, 2018 Approved
Node JS (Install) 10.24.1 3942 Wednesday, April 7, 2021 Approved
Node JS (Install) 10.24.0 751 Tuesday, February 23, 2021 Approved
Node JS (Install) 10.23.3 358 Wednesday, February 10, 2021 Approved
Node JS (Install) 10.23.2 282 Tuesday, January 26, 2021 Approved
Node JS (Install) 10.23.1 4544 Tuesday, January 5, 2021 Approved
Node JS (Install) 10.23.0 4448 Tuesday, October 27, 2020 Approved
Node JS (Install) 10.22.1 1012 Wednesday, September 16, 2020 Approved
Node JS (Install) 10.22.0 4619 Tuesday, July 21, 2020 Approved
Node JS (Install) 10.21.0 1699 Wednesday, June 3, 2020 Approved
Node JS (Install) 10.20.1 4768 Sunday, April 12, 2020 Approved
Node JS (Install) 10.20.0 773 Wednesday, April 8, 2020 Approved
Node JS (Install) 10.19.0 1082 Thursday, February 6, 2020 Approved
Node JS (Install) 10.18.1 2297 Friday, January 10, 2020 Approved
Node JS (Install) 10.18.0 1175 Wednesday, December 18, 2019 Approved
Node JS (Install) 10.17.0 4697 Tuesday, October 22, 2019 Approved
Node JS (Install) 10.16.3 40611 Friday, August 16, 2019 Approved
Node JS (Install) 10.16.2 1878 Wednesday, August 7, 2019 Approved
Node JS (Install) 10.16.1 5145 Thursday, August 1, 2019 Approved
Node JS (Install) 10.16.0 7486 Wednesday, May 29, 2019 Approved
Node JS (Install) 10.15.3 7542 Tuesday, March 5, 2019 Approved
Node JS (Install) 10.15.2 977 Thursday, February 28, 2019 Approved
Node JS (Install) 10.15.1 12304 Wednesday, January 30, 2019 Approved
Node JS (Install) 10.15.0 5046 Wednesday, December 26, 2018 Approved
Node JS (Install) 10.14.2 2964 Wednesday, December 12, 2018 Approved
Node JS (Install) 10.14.1 3362 Thursday, November 29, 2018 Approved
Node JS (Install) 10.14.0 1082 Wednesday, November 28, 2018 Approved
Node JS (Install) 10.13.0 39144 Tuesday, October 30, 2018 Approved
Node JS (Install) 10.12.0 15250 Tuesday, October 16, 2018 Approved
Node JS (Install) 10.11.0 46117 Thursday, September 20, 2018 Approved
Node JS (Install) 10.10.0 25770 Friday, September 7, 2018 Approved
Node JS (Install) 10.9.0 37375 Thursday, August 16, 2018 Approved
Node JS (Install) 10.8.0 31654 Thursday, August 2, 2018 Approved
Node JS (Install) 10.7.0 27815 Thursday, July 19, 2018 Approved
Node JS (Install) 10.6.0 24842 Wednesday, July 4, 2018 Approved
Node JS (Install) 10.5.0 26623 Thursday, June 21, 2018 Approved
Node JS (Install) 10.4.1 14223 Wednesday, June 13, 2018 Approved
Node JS (Install) 10.4.0 11318 Wednesday, June 6, 2018 Approved
Node JS (Install) 10.3.0 16312 Tuesday, May 29, 2018 Approved
Node JS (Install) 10.2.1 8534 Friday, May 25, 2018 Approved
Node JS (Install) 10.2.0 3767 Thursday, May 24, 2018 Approved
Node JS (Install) 10.1.0 30993 Wednesday, May 9, 2018 Approved
Node JS (Install) 10.0.0 26926 Wednesday, April 25, 2018 Approved
Node JS (Install) 9.11.2 1045 Saturday, May 4, 2019 Approved
Node JS (Install) 9.11.1 33997 Thursday, April 5, 2018 Approved
Node JS (Install) 9.10.1 10946 Friday, March 30, 2018 Approved
Node JS (Install) 9.10.0 4229 Wednesday, March 28, 2018 Approved
Node JS (Install) 9.9.0 15214 Wednesday, March 21, 2018 Approved
Node JS (Install) 9.8.0 27606 Thursday, March 8, 2018 Approved
Node JS (Install) 9.7.1 11173 Friday, March 2, 2018 Approved
Node JS (Install) 9.7.0 2506 Thursday, March 1, 2018 Approved
Node JS (Install) 9.6.1 9338 Friday, February 23, 2018 Approved
Node JS (Install) 9.6.0 4163 Thursday, February 22, 2018 Approved
Node JS (Install) 9.5.0 30698 Thursday, February 1, 2018 Approved
Node JS (Install) 9.4.0 34710 Wednesday, January 10, 2018 Approved
Node JS (Install) 9.3.0 34540 Wednesday, December 13, 2017 Approved
Node JS (Install) 9.2.1 3313 Friday, December 8, 2017 Approved
Node JS (Install) 9.2.0 47655 Wednesday, November 15, 2017 Approved
Node JS (Install) 9.1.0 11185 Tuesday, November 7, 2017 Approved
Node JS (Install) 9.0.0 15267 Tuesday, October 31, 2017 Approved
Node JS (Install) 8.17.0 11709 Wednesday, December 18, 2019 Approved
Node JS (Install) 8.16.2 790 Thursday, October 10, 2019 Approved
Node JS (Install) 8.16.1 620 Friday, August 16, 2019 Approved
Node JS (Install) 8.16.0 2325 Wednesday, April 17, 2019 Approved
Node JS (Install) 8.15.1 1327 Thursday, February 28, 2019 Approved
Node JS (Install) 8.15.0 1713 Wednesday, December 26, 2018 Approved
Node JS (Install) 8.14.1 422 Tuesday, December 18, 2018 Approved
Node JS (Install) 8.14.0 814 Wednesday, November 28, 2018 Approved
Node JS (Install) 8.13.0 525 Wednesday, November 21, 2018 Approved
Node JS (Install) 8.12.0 8626 Tuesday, September 11, 2018 Approved
Node JS (Install) 8.11.4 4616 Thursday, August 16, 2018 Approved
Node JS (Install) 8.11.3 7726 Wednesday, June 13, 2018 Approved
Node JS (Install) 8.11.2 2251 Wednesday, May 16, 2018 Approved
Node JS (Install) 8.11.1 3390 Friday, March 30, 2018 Approved
Node JS (Install) 8.11.0 1480 Wednesday, March 28, 2018 Approved
Node JS (Install) 8.10.0 5665 Wednesday, March 7, 2018 Approved
Node JS (Install) 8.9.4 64337 Wednesday, January 3, 2018 Approved
Node JS (Install) 8.9.3 13534 Friday, December 8, 2017 Approved
Node JS (Install) 8.9.2 817 Wednesday, December 6, 2017 Approved
Node JS (Install) 8.9.1 25441 Wednesday, November 8, 2017 Approved
Node JS (Install) 8.9.0.20171107 642 Tuesday, November 7, 2017 Approved
Node JS (Install) 8.8.1 9917 Thursday, October 26, 2017 Approved
Node JS (Install) 8.8.0 2528 Wednesday, October 25, 2017 Approved
Node JS (Install) 8.7.0 19565 Thursday, October 12, 2017 Approved
Node JS (Install) 8.6.0.20170927 21598 Wednesday, September 27, 2017 Approved
Node JS (Install) 8.6.0 1217 Wednesday, September 27, 2017 Approved
Node JS (Install) 8.5.0 24881 Tuesday, September 12, 2017 Approved
Node JS (Install) 8.4.0 45488 Wednesday, August 16, 2017 Approved
Node JS (Install) 8.3.0 10344 Thursday, August 10, 2017 Approved
Node JS (Install) 8.2.1 32007 Friday, July 21, 2017 Approved
Node JS (Install) 8.2.0 2848 Thursday, July 20, 2017 Approved
Node JS (Install) 8.1.4 15413 Tuesday, July 11, 2017 Approved
Node JS (Install) 8.1.3 22796 Thursday, June 29, 2017 Approved
Node JS (Install) 8.1.2 44778 Thursday, June 15, 2017 Approved
Node JS (Install) 8.1.1 15623 Wednesday, June 14, 2017 Approved
Node JS (Install) 8.1.0 22503 Thursday, June 8, 2017 Approved
Node JS (Install) 8.0.0 65582 Wednesday, May 31, 2017 Approved
Node JS (Install) 7.10.1 537 Saturday, May 4, 2019 Approved
Node JS (Install) 7.10.0 83673 Wednesday, May 3, 2017 Approved
Node JS (Install) 7.9.0 34115 Wednesday, April 12, 2017 Approved
Node JS (Install) 7.8.0 23756 Wednesday, March 29, 2017 Approved
Node JS (Install) 7.7.4 13715 Wednesday, March 22, 2017 Approved
Node JS (Install) 7.7.3 13288 Wednesday, March 15, 2017 Approved
Node JS (Install) 7.7.2 11485 Thursday, March 9, 2017 Approved
Node JS (Install) 7.7.1 14801 Thursday, March 2, 2017 Approved
Node JS (Install) 7.7.0 3493 Wednesday, March 1, 2017 Approved
Node JS (Install) 7.6.0 11910 Wednesday, February 22, 2017 Approved
Node JS (Install) 7.5.0 33655 Wednesday, February 1, 2017 Approved
Node JS (Install) 7.4.0 12310 Tuesday, January 24, 2017 Approved
Node JS (Install) 7.3.0 36970 Tuesday, December 20, 2016 Approved
Node JS (Install) 7.2.1 25763 Wednesday, December 7, 2016 Approved
Node JS (Install) 7.2.0 39330 Wednesday, November 23, 2016 Approved
Node JS (Install) 7.1.0 37723 Tuesday, November 8, 2016 Approved
Node JS (Install) 7.0.0 19285 Tuesday, October 25, 2016 Approved
Node JS (Install) 6.17.1 2750 Thursday, April 4, 2019 Approved
Node JS (Install) 6.17.0 356 Thursday, February 28, 2019 Approved
Node JS (Install) 6.16.0 608 Wednesday, December 26, 2018 Approved
Node JS (Install) 6.15.1 402 Monday, December 3, 2018 Approved
Node JS (Install) 6.15.0 379 Wednesday, November 28, 2018 Approved
Node JS (Install) 6.14.4 782 Thursday, August 16, 2018 Approved
Node JS (Install) 6.14.3 709 Wednesday, June 13, 2018 Approved
Node JS (Install) 6.14.2 568 Monday, April 30, 2018 Approved
Node JS (Install) 6.14.1 625 Friday, March 30, 2018 Approved
Node JS (Install) 6.14.0 549 Wednesday, March 28, 2018 Approved
Node JS (Install) 6.13.1 752 Wednesday, March 7, 2018 Approved
Node JS (Install) 6.13.0 666 Wednesday, February 14, 2018 Approved
Node JS (Install) 6.12.3 9303 Wednesday, January 3, 2018 Approved
Node JS (Install) 6.12.2 637 Friday, December 8, 2017 Approved
Node JS (Install) 6.12.1 530 Tuesday, December 5, 2017 Approved
Node JS (Install) 6.12.0 1046 Tuesday, November 7, 2017 Approved
Node JS (Install) 6.11.5 11401 Thursday, November 2, 2017 Approved
Node JS (Install) 6.11.0 2172 Wednesday, June 21, 2017 Approved
Node JS (Install) 6.9.5 21984 Friday, February 3, 2017 Approved
Node JS (Install) 6.9.4 4803 Friday, February 3, 2017 Approved
Node JS (Install) 6.9.3 681 Friday, February 3, 2017 Approved
Node JS (Install) 6.9.1 27480 Wednesday, October 19, 2016 Approved
Node JS (Install) 6.8.1 8903 Saturday, October 15, 2016 Approved
Node JS (Install) 6.8.0 5364 Wednesday, October 12, 2016 Approved
Node JS (Install) 6.7.0 66854 Wednesday, September 28, 2016 Approved
Node JS (Install) 6.6.0 16666 Thursday, September 15, 2016 Approved
Node JS (Install) 6.5.0 14624 Monday, August 29, 2016 Approved
Node JS (Install) 6.4.0 11074 Tuesday, August 16, 2016 Approved
Node JS (Install) 6.3.1 15036 Friday, July 22, 2016 Approved
Node JS (Install) 6.3.0 2085 Sunday, July 17, 2016 Approved
Node JS (Install) 6.2.2 3249 Friday, June 17, 2016 Approved
Node JS (Install) 6.2.1 912 Thursday, June 2, 2016 Approved
Node JS (Install) 6.2.0 810 Tuesday, May 17, 2016 Approved
Node JS (Install) 6.1.0 2412 Sunday, May 8, 2016 Approved
Node JS (Install) 5.12.0 381 Saturday, May 4, 2019 Approved
Node JS (Install) 5.10.1 65304 Wednesday, April 6, 2016 Approved
Node JS (Install) 5.10.0 3422 Friday, April 1, 2016 Approved
Node JS (Install) 5.9.1 4183 Wednesday, March 23, 2016 Approved
Node JS (Install) 5.9.0 3650 Wednesday, March 16, 2016 Approved
Node JS (Install) 5.8.0 3679 Thursday, March 10, 2016 Approved
Node JS (Install) 5.7.1 3572 Thursday, March 3, 2016 Approved
Node JS (Install) 5.7.0 6300 Tuesday, February 23, 2016 Approved
Node JS (Install) 5.6.0 5748 Tuesday, February 9, 2016 Approved
Node JS (Install) 5.5.0 6852 Thursday, January 21, 2016 Approved
Node JS (Install) 5.4.1 3730 Wednesday, January 13, 2016 Approved
Node JS (Install) 5.4.0 2949 Wednesday, January 6, 2016 Approved
Node JS (Install) 5.3.0 6070 Wednesday, December 16, 2015 Approved
Node JS (Install) 5.2.0 59231 Wednesday, December 9, 2015 Approved
Node JS (Install) 5.1.1 90483 Friday, December 4, 2015 Approved
Node JS (Install) 5.1.0 174840 Tuesday, November 17, 2015 Approved
Node JS (Install) 5.0.0 4899 Friday, November 6, 2015 Approved
Node JS (Install) 4.9.1 775 Friday, March 30, 2018 Approved
Node JS (Install) 4.9.0 489 Wednesday, March 28, 2018 Approved
Node JS (Install) 4.8.7 609 Friday, December 8, 2017 Approved
Node JS (Install) 4.8.6 631 Tuesday, November 7, 2017 Approved
Node JS (Install) 4.8.5 730 Thursday, November 2, 2017 Approved
Node JS (Install) 4.6.1 1148 Tuesday, October 18, 2016 Approved
Node JS (Install) 4.6.0 1157 Tuesday, October 18, 2016 Approved
Node JS (Install) 4.5.0 1043 Tuesday, October 18, 2016 Approved
Node JS (Install) 4.4.7 2736 Wednesday, July 6, 2016 Approved
Node JS (Install) 4.4.6 631 Wednesday, July 6, 2016 Approved
Node JS (Install) 4.4.5 943 Tuesday, May 31, 2016 Approved
Node JS (Install) 4.4.4 778 Monday, May 9, 2016 Approved
Node JS (Install) 4.4.3 1110 Thursday, April 14, 2016 Approved
Node JS (Install) 4.4.2 761 Wednesday, April 27, 2016 Approved
Node JS (Install) 4.4.0 1654 Thursday, March 10, 2016 Approved
Node JS (Install) 4.3.2 937 Thursday, March 3, 2016 Approved
Node JS (Install) 4.3.1 2926 Wednesday, February 17, 2016 Approved
Node JS (Install) 4.3.0 716 Tuesday, February 9, 2016 Approved
Node JS (Install) 4.2.6 975 Friday, January 22, 2016 Approved
Node JS (Install) 4.2.5 668 Thursday, January 21, 2016 Approved
Node JS (Install) 4.2.4 1037 Wednesday, January 13, 2016 Approved
Node JS (Install) 4.2.3 601 Wednesday, January 13, 2016 Approved
Node JS (Install) 4.2.2 3900 Friday, November 6, 2015 Approved
Node JS (Install) 4.2.1 952 Friday, November 6, 2015 Approved
Node JS (Install) 4.2.0 762 Friday, November 6, 2015 Approved
Node JS (Install) 4.1.2 12229 Monday, October 5, 2015 Approved
Node JS (Install) 4.1.1 5132 Wednesday, September 23, 2015 Approved
Node JS (Install) 4.1.0 3009 Thursday, September 17, 2015 Approved
Node JS (Install) 4.0.0 3645 Thursday, September 10, 2015 Approved
Node JS (Install) 0.12.7 20841 Sunday, July 12, 2015 Approved
Node JS (Install) 0.12.6 3183 Saturday, July 4, 2015 Approved
Node JS (Install) 0.12.5 4002 Wednesday, June 24, 2015 Approved
Node JS (Install) 0.12.4 9197 Monday, May 25, 2015 Approved
Node JS (Install) 0.12.3 4368 Friday, May 15, 2015 Approved
Node JS (Install) 0.12.2 15222 Wednesday, April 1, 2015 Approved
Node JS (Install) 0.12.1 3537 Tuesday, March 24, 2015 Approved
Node JS (Install) 0.12.0 15529 Saturday, February 7, 2015 Approved
Node JS (Install) 0.10.36 3626 Tuesday, January 27, 2015 Approved
Node JS (Install) 0.10.35 5484 Friday, December 26, 2014 Approved
Node JS (Install) 0.10.34 1561 Thursday, December 18, 2014 Approved
Node JS (Install) 0.10.33 5688 Wednesday, October 29, 2014 Approved
Node JS (Install) 0.10.32 4451 Wednesday, September 17, 2014 Approved
Node JS (Install) 0.10.31 2999 Wednesday, August 20, 2014 Approved
Node JS (Install) 0.10.30 2635 Friday, August 1, 2014 Approved
Node JS (Install) 0.10.29 4364 Tuesday, June 17, 2014 Approved
Node JS (Install) 0.10.28 3887 Saturday, May 3, 2014 Approved
Node JS (Install) 0.10.27 719 Friday, May 2, 2014 Approved
Node JS (Install) 0.10.26 5326 Wednesday, February 19, 2014 Approved
Node JS (Install) 0.10.25 2078 Friday, January 24, 2014 Approved
Node JS (Install) 0.10.24 2258 Friday, December 20, 2013 Approved
Node JS (Install) 0.10.23 1072 Thursday, December 12, 2013 Approved
Node JS (Install) 0.10.22 1866 Wednesday, November 13, 2013 Approved
Node JS (Install) 0.10.21 1697 Saturday, October 19, 2013 Approved
Node JS (Install) 0.10.20 1441 Tuesday, October 1, 2013 Approved
Node JS (Install) 0.10.19 1014 Wednesday, September 25, 2013 Approved
Node JS (Install) 0.10.18 1448 Thursday, September 5, 2013 Approved
Node JS (Install) 0.10.17 1220 Thursday, August 22, 2013 Approved
Node JS (Install) 0.10.16 948 Saturday, August 17, 2013 Approved
Node JS (Install) 0.10.15 1460 Friday, July 26, 2013 Approved
Node JS (Install) 0.10.13 1211 Wednesday, July 10, 2013 Approved
Node JS (Install) 0.10.12 1445 Wednesday, June 19, 2013 Approved
Node JS (Install) 0.10.11 859 Friday, June 14, 2013 Approved
Node JS (Install) 0.10.10 970 Wednesday, June 5, 2013 Approved
Node JS (Install) 0.10.9 992 Friday, May 31, 2013 Approved
Node JS (Install) 0.10.8 952 Saturday, May 25, 2013 Approved
Node JS (Install) 0.10.7 840 Monday, May 20, 2013 Approved
Node JS (Install) 0.10.6 848 Wednesday, May 15, 2013 Approved
Node JS (Install) 0.10.5 1900 Wednesday, April 24, 2013 Approved
Node JS (Install) 0.10.4 978 Friday, April 12, 2013 Approved
Node JS (Install) 0.10.3 1053 Thursday, April 4, 2013 Approved
Node JS (Install) 0.10.2 865 Friday, March 29, 2013 Approved
Node JS (Install) 0.10.1 889 Friday, March 22, 2013 Approved
Node JS (Install) 0.10.0 1065 Tuesday, March 12, 2013 Approved
Node JS (Install) 0.8.22 5048 Thursday, March 7, 2013 Approved
Node JS (Install) 0.8.21.20130226 969 Tuesday, February 26, 2013 Approved
Node JS (Install) 0.8.21 747 Tuesday, February 26, 2013 Approved
Node JS (Install) 0.8.20.20130224 818 Sunday, February 24, 2013 Approved
Node JS (Install) 0.8.20 1042 Saturday, February 16, 2013 Approved
Node JS (Install) 0.8.19 1141 Thursday, February 7, 2013 Approved
Node JS (Install) 0.8.18 1444 Saturday, January 19, 2013 Approved
Node JS (Install) 0.8.17 1102 Thursday, January 10, 2013 Approved
Node JS (Install) 0.8.16 1280 Friday, December 14, 2012 Approved
Node JS (Install) 0.8.15 9036 Tuesday, November 27, 2012 Approved
Node JS (Install) 0.8.14 1396 Friday, October 26, 2012 Approved
Node JS (Install) 0.8.12 972 Sunday, October 14, 2012 Approved
Node JS (Install) 0.8.11 980 Friday, September 28, 2012 Approved
Node JS (Install) 0.8.10 954 Wednesday, September 26, 2012 Approved
Node JS (Install) 0.8.9.20120913 1051 Thursday, September 13, 2012 Approved
Node JS (Install) 0.8.9 759 Wednesday, September 12, 2012 Approved
Node JS (Install) 0.8.8 794 Sunday, August 26, 2012 Approved
Node JS (Install) 0.8.7 811 Thursday, August 16, 2012 Approved
Node JS (Install) 0.8.6 856 Wednesday, August 8, 2012 Approved
Node JS (Install) 0.8.5 809 Monday, August 6, 2012 Approved
Node JS (Install) 0.8.4 853 Friday, July 27, 2012 Approved
Node JS (Install) 0.8.3 790 Friday, July 20, 2012 Approved
Node JS (Install) 0.8.2 741 Tuesday, July 10, 2012 Approved
Node JS (Install) 0.8.1 999 Friday, June 29, 2012 Approved
Node JS (Install) 0.6.19 883 Friday, June 8, 2012 Approved
Node JS (Install) 0.6.18 861 Monday, May 21, 2012 Approved
Node JS (Install) 0.6.17 884 Friday, May 11, 2012 Approved
Node JS (Install) 0.6.16 718 Friday, May 11, 2012 Approved
Node JS (Install) 0.6.15 825 Wednesday, April 11, 2012 Approved
Node JS (Install) 0.6.14 725 Sunday, April 1, 2012 Approved
Node JS (Install) 0.6.13 743 Sunday, April 1, 2012 Approved
Node JS (Install) 0.6.12 767 Saturday, March 10, 2012 Approved
Node JS (Install) 0.6.11 806 Saturday, February 25, 2012 Approved
Node JS Install 0.6.10 833 Monday, February 6, 2012 Approved
Node JS Install 0.6.9 793 Monday, February 6, 2012 Approved
Node JS Install 0.6.8 841 Sunday, January 22, 2012 Approved
Node JS Install 0.6.7 733 Sunday, January 15, 2012 Approved
Node JS Install 0.6.6 790 Sunday, December 18, 2011 Approved

This package has no dependencies.

Discussion for the Node JS (Install) Package

Ground Rules:

  • This discussion is only about Node JS (Install) and the Node JS (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 (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