Chocolatey Community Coffee Break

Join the Chocolatey Team on our regular monthly stream where we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

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

Announcing Chocolatey Central Management 0.10.0

Livestream from
Thursday, 06 October 2022

We recently released our largest update to Chocolatey Central Management so far. Join Gary and Steph to find out more about Chocolatey Central Management and the new features and fixes we've added to this release.

Watch On-Demand
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
Chocolatey Product Spotlight: Chocolatey 1.2.0 and Chocolatey Licensed Extension 5.0.0

Livestream from
Thursday, 03 November 2022

Join Paul and Gary for this months Chocolatey product livestream where we look at the latest release of Chocolatey 1.2.0, Chocolatey Licensed Extension 5.0.0 and shine a spotlight on the new hook scripts functionality. This opens up so many possibilities for Chocolatey CLI users!

Watch On-Demand
Chocolatey Coding Livestream

Livestream from
Tuesday, 29 November 2022

Join Josh as he adds the ability to manage Chocolatey GUI config and features with the Chocolatey Ansible Collection.

Watch On-Demand
Introduction into Chocolatey with Veeam

Webinar from
Tuesday, 13 December 2022

Join Gary, Paul, and Maurice as they introduce and demonstrate how to use Chocolatey! Questions will be answered live in an Ask Me Anything format.

Watch On-Demand

Downloads:

6,880,416

Downloads of v 5.6.0:

5,637

Last Update:

09 Feb 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

5.6.0 | Updated: 09 Feb 2016

Downloads:

6,880,416

Downloads of v 5.6.0:

5,637

Maintainer(s):

Software Author(s):

  • Joyent

Node JS (Install) 5.6.0

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

  • 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="'5.6.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="'5.6.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: '5.6.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  '5.6.0'
end

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


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

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


package { 'nodejs.install':
  ensure   => '5.6.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 09 Feb 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/v5.6.0/node-v5.6.0-x86.msi'
$url64 = 'https://nodejs.org/dist/v5.6.0/node-v5.6.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) 21.1.0 57383 Tuesday, October 24, 2023 Approved
Node JS (Install) 21.0.0 21838 Tuesday, October 17, 2023 Approved
Node JS (Install) 20.10.0 100 Wednesday, November 22, 2023 Approved
Node JS (Install) 20.9.0 639 Tuesday, October 24, 2023 Approved
Node JS (Install) 20.8.1 12326 Saturday, October 14, 2023 Approved
Node JS (Install) 20.8.0 21374 Friday, September 29, 2023 Approved
Node JS (Install) 20.7.0 39116 Tuesday, September 19, 2023 Approved
Node JS (Install) 20.6.1 6931 Friday, September 8, 2023 Approved
Node JS (Install) 20.6.0 37948 Tuesday, September 5, 2023 Approved
Node JS (Install) 20.5.1 35588 Wednesday, August 9, 2023 Approved
Node JS (Install) 20.5.0 30607 Friday, July 21, 2023 Approved
Node JS (Install) 20.4.0 27002 Wednesday, July 5, 2023 Approved
Node JS (Install) 20.3.1 18560 Monday, June 26, 2023 Approved
Node JS (Install) 20.3.0 26371 Thursday, June 8, 2023 Approved
Node JS (Install) 20.2.0 38352 Wednesday, May 17, 2023 Approved
Node JS (Install) 20.1.0 24213 Thursday, May 4, 2023 Approved
Node JS (Install) 20.0.0 27727 Tuesday, April 18, 2023 Approved
Node JS (Install) 19.9.0 24190 Tuesday, April 11, 2023 Approved
Node JS (Install) 19.8.1 36992 Thursday, March 16, 2023 Approved
Node JS (Install) 19.8.0 5396 Wednesday, March 15, 2023 Approved
Node JS (Install) 19.7.0 34502 Wednesday, February 22, 2023 Approved
Node JS (Install) 19.6.1 3199 Friday, February 17, 2023 Approved
Node JS (Install) 19.6.0 39463 Thursday, February 2, 2023 Approved
Node JS (Install) 19.5.0 16131 Wednesday, January 25, 2023 Approved
Node JS (Install) 19.4.0 25411 Friday, January 6, 2023 Approved
Node JS (Install) 19.3.0 16000 Thursday, December 15, 2022 Approved
Node JS (Install) 19.2.0 33903 Wednesday, November 30, 2022 Approved
Node JS (Install) 19.1.0 20134 Tuesday, November 15, 2022 Approved
Node JS (Install) 19.0.0 23810 Friday, November 4, 2022 Approved
Node JS (Install) 18.18.2 5041 Saturday, October 14, 2023 Approved
Node JS (Install) 18.18.1 686 Wednesday, October 11, 2023 Approved
Node JS (Install) 18.18.0 3515 Tuesday, September 19, 2023 Approved
Node JS (Install) 18.17.1 7380 Wednesday, August 9, 2023 Approved
Node JS (Install) 18.17.0 3193 Wednesday, July 19, 2023 Approved
Node JS (Install) 18.16.1 5875 Monday, June 26, 2023 Approved
Node JS (Install) 18.16.0 12654 Thursday, April 13, 2023 Approved
Node JS (Install) 18.15.0 8539 Wednesday, March 8, 2023 Approved
Node JS (Install) 18.14.2 2628 Wednesday, February 22, 2023 Approved
Node JS (Install) 18.14.1 532 Friday, February 17, 2023 Approved
Node JS (Install) 18.14.0 510 Friday, February 3, 2023 Approved
Node JS (Install) 18.13.0 743 Friday, January 6, 2023 Approved
Node JS (Install) 18.12.1 10637 Saturday, November 5, 2022 Approved
Node JS (Install) 18.12.0 19614 Wednesday, October 26, 2022 Approved
Node JS (Install) 18.11.0 21459 Friday, October 14, 2022 Approved
Node JS (Install) 18.10.0 31233 Wednesday, September 28, 2022 Approved
Node JS (Install) 18.9.1 10546 Friday, September 23, 2022 Approved
Node JS (Install) 18.9.0 23247 Thursday, September 8, 2022 Approved
Node JS (Install) 18.8.0 21799 Wednesday, August 24, 2022 Approved
Node JS (Install) 18.7.0 37011 Wednesday, July 27, 2022 Approved
Node JS (Install) 18.6.0 21160 Thursday, July 14, 2022 Approved
Node JS (Install) 18.5.0 12278 Thursday, July 7, 2022 Approved
Node JS (Install) 18.4.0 28501 Thursday, June 16, 2022 Approved
Node JS (Install) 18.3.0 22878 Thursday, June 2, 2022 Approved
Node JS (Install) 17.9.1 659 Thursday, June 2, 2022 Approved
Node JS (Install) 17.9.0 62726 Friday, April 8, 2022 Approved
Node JS (Install) 17.8.0 25387 Tuesday, March 22, 2022 Approved
Node JS (Install) 17.7.2 9583 Friday, March 18, 2022 Approved
Node JS (Install) 17.7.1 14051 Friday, March 11, 2022 Approved
Node JS (Install) 17.7.0 4627 Wednesday, March 9, 2022 Approved
Node JS (Install) 17.6.0 22219 Wednesday, February 23, 2022 Approved
Node JS (Install) 17.5.0 25600 Friday, February 11, 2022 Approved
Node JS (Install) 17.4.0 33855 Tuesday, January 18, 2022 Approved
Node JS (Install) 17.3.1 17343 Tuesday, January 11, 2022 Approved
Node JS (Install) 17.3.0 33265 Saturday, December 18, 2021 Approved
Node JS (Install) 17.2.0 28641 Tuesday, November 30, 2021 Approved
Node JS (Install) 17.1.0 36531 Wednesday, November 10, 2021 Approved
Node JS (Install) 17.0.1 36747 Thursday, October 21, 2021 Approved
Node JS (Install) 17.0.0 4195 Tuesday, October 19, 2021 Approved
Node JS (Install) 16.20.1 2194 Monday, June 26, 2023 Approved
Node JS (Install) 16.20.0 4998 Thursday, March 30, 2023 Approved
Node JS (Install) 16.19.1 2398 Friday, February 17, 2023 Approved
Node JS (Install) 16.19.0 6733 Tuesday, December 13, 2022 Approved
Node JS (Install) 16.18.1 9956 Friday, November 4, 2022 Approved
Node JS (Install) 16.18.0 5722 Wednesday, October 12, 2022 Approved
Node JS (Install) 16.17.1 7552 Friday, September 23, 2022 Approved
Node JS (Install) 16.17.0 6671 Tuesday, August 16, 2022 Approved
Node JS (Install) 16.16.0 19928 Thursday, July 7, 2022 Approved
Node JS (Install) 16.15.1 6386 Thursday, June 2, 2022 Approved
Node JS (Install) 16.14.2 15488 Friday, March 18, 2022 Approved
Node JS (Install) 16.14.1 409 Wednesday, March 16, 2022 Approved
Node JS (Install) 16.14.0 24847 Wednesday, February 9, 2022 Approved
Node JS (Install) 16.13.2 9191 Tuesday, January 11, 2022 Approved
Node JS (Install) 16.13.1 8184 Wednesday, December 1, 2021 Approved
Node JS (Install) 16.13.0 7510 Tuesday, October 26, 2021 Approved
Node JS (Install) 16.12.0 1249 Wednesday, October 20, 2021 Approved
Node JS (Install) 16.11.1 18354 Tuesday, October 12, 2021 Approved
Node JS (Install) 16.11.0 10410 Friday, October 8, 2021 Approved
Node JS (Install) 16.10.0 51414 Thursday, September 23, 2021 Approved
Node JS (Install) 16.9.1 37528 Saturday, September 11, 2021 Approved
Node JS (Install) 16.9.0 9349 Tuesday, September 7, 2021 Approved
Node JS (Install) 16.8.0 24298 Thursday, August 26, 2021 Approved
Node JS (Install) 16.7.0 22162 Wednesday, August 18, 2021 Approved
Node JS (Install) 16.6.2 15130 Wednesday, August 11, 2021 Approved
Node JS (Install) 16.6.1 87445 Tuesday, August 3, 2021 Approved
Node JS (Install) 16.6.0 10606 Friday, July 30, 2021 Approved
Node JS (Install) 16.5.0 30332 Wednesday, July 14, 2021 Approved
Node JS (Install) 16.4.2 20161 Monday, July 5, 2021 Approved
Node JS (Install) 16.4.1 11842 Thursday, July 1, 2021 Approved
Node JS (Install) 16.4.0 26898 Wednesday, June 23, 2021 Approved
Node JS (Install) 16.3.0 38942 Thursday, June 3, 2021 Approved
Node JS (Install) 16.2.0 34636 Wednesday, May 19, 2021 Approved
Node JS (Install) 16.1.0 30099 Tuesday, May 4, 2021 Approved
Node JS (Install) 16.0.0 33049 Tuesday, April 20, 2021 Approved
Node JS (Install) 15.14.0 34661 Wednesday, April 7, 2021 Approved
Node JS (Install) 15.13.0 12101 Wednesday, March 31, 2021 Approved
Node JS (Install) 15.12.0 32272 Thursday, March 18, 2021 Approved
Node JS (Install) 15.11.0 35067 Wednesday, March 3, 2021 Approved
Node JS (Install) 15.10.0 21436 Tuesday, February 23, 2021 Approved
Node JS (Install) 15.9.0 15138 Thursday, February 18, 2021 Approved
Node JS (Install) 15.8.0 37364 Wednesday, February 3, 2021 Approved
Node JS (Install) 15.7.0 17786 Tuesday, January 26, 2021 Approved
Node JS (Install) 15.6.0 22380 Friday, January 15, 2021 Approved
Node JS (Install) 15.5.1 32380 Tuesday, January 5, 2021 Approved
Node JS (Install) 15.5.0 24411 Wednesday, December 23, 2020 Approved
Node JS (Install) 15.4.0 29192 Wednesday, December 9, 2020 Approved
Node JS (Install) 15.3.0 37791 Tuesday, November 24, 2020 Approved
Node JS (Install) 15.2.1 17001 Monday, November 16, 2020 Approved
Node JS (Install) 15.2.0 17054 Wednesday, November 11, 2020 Approved
Node JS (Install) 15.1.0 24859 Thursday, November 5, 2020 Approved
Node JS (Install) 15.0.1 33233 Thursday, October 22, 2020 Approved
Node JS (Install) 15.0.0 6786 Tuesday, October 20, 2020 Approved
Node JS (Install) 14.21.3 2504 Friday, February 17, 2023 Approved
Node JS (Install) 14.21.2 710 Tuesday, December 13, 2022 Approved
Node JS (Install) 14.21.1 791 Friday, November 4, 2022 Approved
Node JS (Install) 14.21.0 144 Wednesday, November 2, 2022 Approved
Node JS (Install) 14.20.1 492 Friday, September 23, 2022 Approved
Node JS (Install) 14.20.0 3336 Thursday, July 7, 2022 Approved
Node JS (Install) 14.19.3 861 Thursday, June 2, 2022 Approved
Node JS (Install) 14.19.1 22878 Friday, March 18, 2022 Approved
Node JS (Install) 14.19.0 4088 Tuesday, February 1, 2022 Approved
Node JS (Install) 14.18.3 5105 Tuesday, January 11, 2022 Approved
Node JS (Install) 14.18.2 4318 Tuesday, November 30, 2021 Approved
Node JS (Install) 14.18.1 7546 Tuesday, October 12, 2021 Approved
Node JS (Install) 14.18.0 3267 Tuesday, September 28, 2021 Approved
Node JS (Install) 14.17.5 8617 Wednesday, August 11, 2021 Approved
Node JS (Install) 14.17.4 378 Thursday, July 29, 2021 Approved
Node JS (Install) 14.17.3 2669 Monday, July 5, 2021 Approved
Node JS (Install) 14.17.2 212 Thursday, July 1, 2021 Approved
Node JS (Install) 14.17.1 915 Tuesday, June 15, 2021 Approved
Node JS (Install) 14.17.0 18194 Wednesday, May 12, 2021 Approved
Node JS (Install) 14.16.1 6469 Wednesday, April 7, 2021 Approved
Node JS (Install) 14.15.5 2700 Tuesday, February 9, 2021 Approved
Node JS (Install) 14.15.4 17321 Tuesday, January 5, 2021 Approved
Node JS (Install) 14.15.3 1261 Friday, December 18, 2020 Approved
Node JS (Install) 14.15.2 339 Wednesday, December 16, 2020 Approved
Node JS (Install) 14.15.1 2029 Monday, November 16, 2020 Approved
Node JS (Install) 14.15.0 10629 Tuesday, October 27, 2020 Approved
Node JS (Install) 14.14.0 10534 Friday, October 16, 2020 Approved
Node JS (Install) 14.13.1 27292 Thursday, October 8, 2020 Approved
Node JS (Install) 14.13.0 21570 Wednesday, September 30, 2020 Approved
Node JS (Install) 14.12.0 20170 Wednesday, September 23, 2020 Approved
Node JS (Install) 14.11.0 19660 Wednesday, September 16, 2020 Approved
Node JS (Install) 14.10.1 14870 Thursday, September 10, 2020 Approved
Node JS (Install) 14.10.0 7938 Tuesday, September 8, 2020 Approved
Node JS (Install) 14.8.0 60000 Tuesday, August 11, 2020 Approved
Node JS (Install) 14.7.0 27629 Friday, July 31, 2020 Approved
Node JS (Install) 14.6.0 23864 Wednesday, July 22, 2020 Approved
Node JS (Install) 14.5.0 44539 Wednesday, July 1, 2020 Approved
Node JS (Install) 14.4.0 55392 Wednesday, June 3, 2020 Approved
Node JS (Install) 14.3.0 29823 Wednesday, May 20, 2020 Approved
Node JS (Install) 14.2.0 33614 Wednesday, May 6, 2020 Approved
Node JS (Install) 14.1.0 12215 Thursday, April 30, 2020 Approved
Node JS (Install) 14.0.0 24592 Wednesday, April 22, 2020 Approved
Node JS (Install) 13.14.0 44664 Tuesday, June 2, 2020 Approved
Node JS (Install) 13.13.0 19053 Wednesday, April 15, 2020 Approved
Node JS (Install) 13.12.0 42574 Friday, March 27, 2020 Approved
Node JS (Install) 13.11.0 28975 Thursday, March 12, 2020 Approved
Node JS (Install) 13.10.1 21183 Thursday, March 5, 2020 Approved
Node JS (Install) 13.9.0 31865 Wednesday, February 19, 2020 Approved
Node JS (Install) 13.7.0 47035 Wednesday, January 22, 2020 Approved
Node JS (Install) 13.6.0 18569 Wednesday, January 8, 2020 Approved
Node JS (Install) 13.5.0 38072 Friday, December 20, 2019 Approved
Node JS (Install) 13.3.0 25834 Thursday, December 5, 2019 Approved
Node JS (Install) 13.2.0 25497 Friday, November 22, 2019 Approved
Node JS (Install) 13.1.0 21429 Monday, November 11, 2019 Approved
Node JS (Install) 13.0.1 36324 Wednesday, October 23, 2019 Approved
Node JS (Install) 13.0.0 5082 Tuesday, October 22, 2019 Approved
Node JS (Install) 12.22.12 1155 Tuesday, April 5, 2022 Approved
Node JS (Install) 12.22.11 290 Friday, March 18, 2022 Approved
Node JS (Install) 12.22.10 227 Wednesday, February 2, 2022 Approved
Node JS (Install) 12.22.9 662 Tuesday, January 11, 2022 Approved
Node JS (Install) 12.22.8 155 Friday, December 17, 2021 Approved
Node JS (Install) 12.22.7 1102 Tuesday, October 12, 2021 Approved
Node JS (Install) 12.22.6 1949 Tuesday, August 31, 2021 Approved
Node JS (Install) 12.22.5 384 Wednesday, August 11, 2021 Approved
Node JS (Install) 12.22.4 113 Thursday, July 29, 2021 Approved
Node JS (Install) 12.22.3 513 Monday, July 5, 2021 Approved
Node JS (Install) 12.22.2 122 Thursday, July 1, 2021 Approved
Node JS (Install) 12.22.1 2656 Wednesday, April 7, 2021 Approved
Node JS (Install) 12.22.0 8236 Tuesday, March 30, 2021 Approved
Node JS (Install) 12.21.0 5166 Tuesday, February 23, 2021 Approved
Node JS (Install) 12.20.2 436 Thursday, February 11, 2021 Approved
Node JS (Install) 12.20.1 4117 Tuesday, January 5, 2021 Approved
Node JS (Install) 12.20.0 1569 Tuesday, November 24, 2020 Approved
Node JS (Install) 12.19.1 437 Monday, November 16, 2020 Approved
Node JS (Install) 12.19.0 3697 Wednesday, October 7, 2020 Approved
Node JS (Install) 12.18.4 1533 Wednesday, September 16, 2020 Approved
Node JS (Install) 12.18.3 14681 Wednesday, July 22, 2020 Approved
Node JS (Install) 12.18.2 2125 Tuesday, June 30, 2020 Approved
Node JS (Install) 12.18.1 949 Wednesday, June 17, 2020 Approved
Node JS (Install) 12.18.0 2618 Wednesday, June 3, 2020 Approved
Node JS (Install) 12.17.0 2230 Tuesday, May 26, 2020 Approved
Node JS (Install) 12.16.3 5390 Tuesday, April 28, 2020 Approved
Node JS (Install) 12.16.2 2299 Thursday, April 9, 2020 Approved
Node JS (Install) 12.16.1 9470 Wednesday, February 19, 2020 Approved
Node JS (Install) 12.16.0 2747 Wednesday, February 12, 2020 Approved
Node JS (Install) 12.15.0 4626 Thursday, February 6, 2020 Approved
Node JS (Install) 12.14.1 22128 Tuesday, January 7, 2020 Approved
Node JS (Install) 12.14.0 3093 Wednesday, December 18, 2019 Approved
Node JS (Install) 12.13.1 7203 Tuesday, November 19, 2019 Approved
Node JS (Install) 12.13.0 22216 Monday, October 21, 2019 Approved
Node JS (Install) 12.12.0 19596 Saturday, October 12, 2019 Approved
Node JS (Install) 12.11.1 21873 Tuesday, October 1, 2019 Approved
Node JS (Install) 12.11.0 14843 Thursday, September 26, 2019 Approved
Node JS (Install) 12.10.0 45509 Thursday, September 5, 2019 Approved
Node JS (Install) 12.9.1 33405 Tuesday, August 27, 2019 Approved
Node JS (Install) 12.9.0 14628 Wednesday, August 21, 2019 Approved
Node JS (Install) 12.8.1 13573 Thursday, August 15, 2019 Approved
Node JS (Install) 12.8.0 23900 Wednesday, August 7, 2019 Approved
Node JS (Install) 12.7.0 24546 Wednesday, July 24, 2019 Approved
Node JS (Install) 12.6.0 34172 Wednesday, July 3, 2019 Approved
Node JS (Install) 12.5.0 11864 Thursday, June 27, 2019 Approved
Node JS (Install) 12.4.0 40345 Tuesday, June 4, 2019 Approved
Node JS (Install) 12.3.1 22545 Wednesday, May 22, 2019 Approved
Node JS (Install) 12.3.0 1685 Wednesday, May 22, 2019 Approved
Node JS (Install) 12.2.0 24216 Wednesday, May 8, 2019 Approved
Node JS (Install) 12.1.0 26061 Monday, April 29, 2019 Approved
Node JS (Install) 12.0.0 12938 Tuesday, April 23, 2019 Approved
Node JS (Install) 11.15.0 6495 Tuesday, April 30, 2019 Approved
Node JS (Install) 11.14.0 21442 Thursday, April 11, 2019 Approved
Node JS (Install) 11.13.0 25751 Friday, March 29, 2019 Approved
Node JS (Install) 11.12.0 22303 Saturday, March 16, 2019 Approved
Node JS (Install) 11.11.0 17120 Thursday, March 7, 2019 Approved
Node JS (Install) 11.10.1 12921 Thursday, February 28, 2019 Approved
Node JS (Install) 11.10.0 21611 Friday, February 15, 2019 Approved
Node JS (Install) 11.9.0 26984 Thursday, January 31, 2019 Approved
Node JS (Install) 11.8.0 10468 Friday, January 25, 2019 Approved
Node JS (Install) 11.7.0 11401 Friday, January 18, 2019 Approved
Node JS (Install) 11.6.0 32647 Wednesday, December 26, 2018 Approved
Node JS (Install) 11.5.0 9824 Wednesday, December 19, 2018 Approved
Node JS (Install) 11.4.0 16303 Friday, December 7, 2018 Approved
Node JS (Install) 11.3.0 14125 Wednesday, November 28, 2018 Approved
Node JS (Install) 11.2.0 4057 Monday, November 26, 2018 Approved
Node JS (Install) 10.24.1 2205 Wednesday, April 7, 2021 Approved
Node JS (Install) 10.24.0 501 Tuesday, February 23, 2021 Approved
Node JS (Install) 10.23.3 200 Wednesday, February 10, 2021 Approved
Node JS (Install) 10.23.2 156 Tuesday, January 26, 2021 Approved
Node JS (Install) 10.23.1 4370 Tuesday, January 5, 2021 Approved
Node JS (Install) 10.23.0 4212 Tuesday, October 27, 2020 Approved
Node JS (Install) 10.22.1 812 Wednesday, September 16, 2020 Approved
Node JS (Install) 10.22.0 3386 Tuesday, July 21, 2020 Approved
Node JS (Install) 10.21.0 1521 Wednesday, June 3, 2020 Approved
Node JS (Install) 10.20.1 4505 Sunday, April 12, 2020 Approved
Node JS (Install) 10.20.0 616 Wednesday, April 8, 2020 Approved
Node JS (Install) 10.19.0 925 Thursday, February 6, 2020 Approved
Node JS (Install) 10.18.1 1598 Friday, January 10, 2020 Approved
Node JS (Install) 10.18.0 968 Wednesday, December 18, 2019 Approved
Node JS (Install) 10.17.0 4125 Tuesday, October 22, 2019 Approved
Node JS (Install) 10.16.3 39993 Friday, August 16, 2019 Approved
Node JS (Install) 10.16.2 1719 Wednesday, August 7, 2019 Approved
Node JS (Install) 10.16.1 5030 Thursday, August 1, 2019 Approved
Node JS (Install) 10.16.0 7163 Wednesday, May 29, 2019 Approved
Node JS (Install) 10.15.3 6951 Tuesday, March 5, 2019 Approved
Node JS (Install) 10.15.2 863 Thursday, February 28, 2019 Approved
Node JS (Install) 10.15.1 11593 Wednesday, January 30, 2019 Approved
Node JS (Install) 10.15.0 4428 Wednesday, December 26, 2018 Approved
Node JS (Install) 10.14.2 2721 Wednesday, December 12, 2018 Approved
Node JS (Install) 10.14.1 3248 Thursday, November 29, 2018 Approved
Node JS (Install) 10.14.0 977 Wednesday, November 28, 2018 Approved
Node JS (Install) 10.13.0 38516 Tuesday, October 30, 2018 Approved
Node JS (Install) 10.12.0 15129 Tuesday, October 16, 2018 Approved
Node JS (Install) 10.11.0 45992 Thursday, September 20, 2018 Approved
Node JS (Install) 10.10.0 25662 Friday, September 7, 2018 Approved
Node JS (Install) 10.9.0 37084 Thursday, August 16, 2018 Approved
Node JS (Install) 10.8.0 31522 Thursday, August 2, 2018 Approved
Node JS (Install) 10.7.0 27690 Thursday, July 19, 2018 Approved
Node JS (Install) 10.6.0 24693 Wednesday, July 4, 2018 Approved
Node JS (Install) 10.5.0 26493 Thursday, June 21, 2018 Approved
Node JS (Install) 10.4.1 14075 Wednesday, June 13, 2018 Approved
Node JS (Install) 10.4.0 11202 Wednesday, June 6, 2018 Approved
Node JS (Install) 10.3.0 16162 Tuesday, May 29, 2018 Approved
Node JS (Install) 10.2.1 8389 Friday, May 25, 2018 Approved
Node JS (Install) 10.2.0 3616 Thursday, May 24, 2018 Approved
Node JS (Install) 10.1.0 30865 Wednesday, May 9, 2018 Approved
Node JS (Install) 10.0.0 26629 Wednesday, April 25, 2018 Approved
Node JS (Install) 9.11.2 774 Saturday, May 4, 2019 Approved
Node JS (Install) 9.11.1 33859 Thursday, April 5, 2018 Approved
Node JS (Install) 9.10.1 10798 Friday, March 30, 2018 Approved
Node JS (Install) 9.10.0 4120 Wednesday, March 28, 2018 Approved
Node JS (Install) 9.9.0 15121 Wednesday, March 21, 2018 Approved
Node JS (Install) 9.8.0 27462 Thursday, March 8, 2018 Approved
Node JS (Install) 9.7.1 11047 Friday, March 2, 2018 Approved
Node JS (Install) 9.7.0 2399 Thursday, March 1, 2018 Approved
Node JS (Install) 9.6.1 9191 Friday, February 23, 2018 Approved
Node JS (Install) 9.6.0 4025 Thursday, February 22, 2018 Approved
Node JS (Install) 9.5.0 30500 Thursday, February 1, 2018 Approved
Node JS (Install) 9.4.0 34565 Wednesday, January 10, 2018 Approved
Node JS (Install) 9.3.0 34344 Wednesday, December 13, 2017 Approved
Node JS (Install) 9.2.1 3190 Friday, December 8, 2017 Approved
Node JS (Install) 9.2.0 47536 Wednesday, November 15, 2017 Approved
Node JS (Install) 9.1.0 11064 Tuesday, November 7, 2017 Approved
Node JS (Install) 9.0.0 15133 Tuesday, October 31, 2017 Approved
Node JS (Install) 8.17.0 6619 Wednesday, December 18, 2019 Approved
Node JS (Install) 8.16.2 666 Thursday, October 10, 2019 Approved
Node JS (Install) 8.16.1 503 Friday, August 16, 2019 Approved
Node JS (Install) 8.16.0 2117 Wednesday, April 17, 2019 Approved
Node JS (Install) 8.15.1 1225 Thursday, February 28, 2019 Approved
Node JS (Install) 8.15.0 1588 Wednesday, December 26, 2018 Approved
Node JS (Install) 8.14.1 313 Tuesday, December 18, 2018 Approved
Node JS (Install) 8.14.0 677 Wednesday, November 28, 2018 Approved
Node JS (Install) 8.13.0 418 Wednesday, November 21, 2018 Approved
Node JS (Install) 8.12.0 8462 Tuesday, September 11, 2018 Approved
Node JS (Install) 8.11.4 4364 Thursday, August 16, 2018 Approved
Node JS (Install) 8.11.3 7348 Wednesday, June 13, 2018 Approved
Node JS (Install) 8.11.2 2031 Wednesday, May 16, 2018 Approved
Node JS (Install) 8.11.1 3215 Friday, March 30, 2018 Approved
Node JS (Install) 8.11.0 1338 Wednesday, March 28, 2018 Approved
Node JS (Install) 8.10.0 4984 Wednesday, March 7, 2018 Approved
Node JS (Install) 8.9.4 64094 Wednesday, January 3, 2018 Approved
Node JS (Install) 8.9.3 12703 Friday, December 8, 2017 Approved
Node JS (Install) 8.9.2 705 Wednesday, December 6, 2017 Approved
Node JS (Install) 8.9.1 25299 Wednesday, November 8, 2017 Approved
Node JS (Install) 8.9.0.20171107 514 Tuesday, November 7, 2017 Approved
Node JS (Install) 8.8.1 9809 Thursday, October 26, 2017 Approved
Node JS (Install) 8.8.0 2427 Wednesday, October 25, 2017 Approved
Node JS (Install) 8.7.0 19446 Thursday, October 12, 2017 Approved
Node JS (Install) 8.6.0.20170927 21479 Wednesday, September 27, 2017 Approved
Node JS (Install) 8.6.0 1092 Wednesday, September 27, 2017 Approved
Node JS (Install) 8.5.0 24734 Tuesday, September 12, 2017 Approved
Node JS (Install) 8.4.0 45331 Wednesday, August 16, 2017 Approved
Node JS (Install) 8.3.0 10199 Thursday, August 10, 2017 Approved
Node JS (Install) 8.2.1 31873 Friday, July 21, 2017 Approved
Node JS (Install) 8.2.0 2740 Thursday, July 20, 2017 Approved
Node JS (Install) 8.1.4 15288 Tuesday, July 11, 2017 Approved
Node JS (Install) 8.1.3 22708 Thursday, June 29, 2017 Approved
Node JS (Install) 8.1.2 44682 Thursday, June 15, 2017 Approved
Node JS (Install) 8.1.1 15469 Wednesday, June 14, 2017 Approved
Node JS (Install) 8.1.0 22395 Thursday, June 8, 2017 Approved
Node JS (Install) 8.0.0 65383 Wednesday, May 31, 2017 Approved
Node JS (Install) 7.10.1 310 Saturday, May 4, 2019 Approved
Node JS (Install) 7.10.0 83533 Wednesday, May 3, 2017 Approved
Node JS (Install) 7.9.0 33994 Wednesday, April 12, 2017 Approved
Node JS (Install) 7.8.0 23637 Wednesday, March 29, 2017 Approved
Node JS (Install) 7.7.4 13613 Wednesday, March 22, 2017 Approved
Node JS (Install) 7.7.3 13182 Wednesday, March 15, 2017 Approved
Node JS (Install) 7.7.2 11393 Thursday, March 9, 2017 Approved
Node JS (Install) 7.7.1 14698 Thursday, March 2, 2017 Approved
Node JS (Install) 7.7.0 3392 Wednesday, March 1, 2017 Approved
Node JS (Install) 7.6.0 11790 Wednesday, February 22, 2017 Approved
Node JS (Install) 7.5.0 33511 Wednesday, February 1, 2017 Approved
Node JS (Install) 7.4.0 12197 Tuesday, January 24, 2017 Approved
Node JS (Install) 7.3.0 36883 Tuesday, December 20, 2016 Approved
Node JS (Install) 7.2.1 25656 Wednesday, December 7, 2016 Approved
Node JS (Install) 7.2.0 39200 Wednesday, November 23, 2016 Approved
Node JS (Install) 7.1.0 37619 Tuesday, November 8, 2016 Approved
Node JS (Install) 7.0.0 19180 Tuesday, October 25, 2016 Approved
Node JS (Install) 6.17.1 2325 Thursday, April 4, 2019 Approved
Node JS (Install) 6.17.0 241 Thursday, February 28, 2019 Approved
Node JS (Install) 6.16.0 504 Wednesday, December 26, 2018 Approved
Node JS (Install) 6.15.1 296 Monday, December 3, 2018 Approved
Node JS (Install) 6.15.0 270 Wednesday, November 28, 2018 Approved
Node JS (Install) 6.14.4 655 Thursday, August 16, 2018 Approved
Node JS (Install) 6.14.3 578 Wednesday, June 13, 2018 Approved
Node JS (Install) 6.14.2 455 Monday, April 30, 2018 Approved
Node JS (Install) 6.14.1 523 Friday, March 30, 2018 Approved
Node JS (Install) 6.14.0 438 Wednesday, March 28, 2018 Approved
Node JS (Install) 6.13.1 635 Wednesday, March 7, 2018 Approved
Node JS (Install) 6.13.0 531 Wednesday, February 14, 2018 Approved
Node JS (Install) 6.12.3 9182 Wednesday, January 3, 2018 Approved
Node JS (Install) 6.12.2 516 Friday, December 8, 2017 Approved
Node JS (Install) 6.12.1 417 Tuesday, December 5, 2017 Approved
Node JS (Install) 6.12.0 867 Tuesday, November 7, 2017 Approved
Node JS (Install) 6.11.5 11163 Thursday, November 2, 2017 Approved
Node JS (Install) 6.11.0 2077 Wednesday, June 21, 2017 Approved
Node JS (Install) 6.9.5 21888 Friday, February 3, 2017 Approved
Node JS (Install) 6.9.4 4700 Friday, February 3, 2017 Approved
Node JS (Install) 6.9.3 586 Friday, February 3, 2017 Approved
Node JS (Install) 6.9.1 27056 Wednesday, October 19, 2016 Approved
Node JS (Install) 6.8.1 8811 Saturday, October 15, 2016 Approved
Node JS (Install) 6.8.0 5241 Wednesday, October 12, 2016 Approved
Node JS (Install) 6.7.0 66748 Wednesday, September 28, 2016 Approved
Node JS (Install) 6.6.0 16562 Thursday, September 15, 2016 Approved
Node JS (Install) 6.5.0 14525 Monday, August 29, 2016 Approved
Node JS (Install) 6.4.0 10966 Tuesday, August 16, 2016 Approved
Node JS (Install) 6.3.1 14948 Friday, July 22, 2016 Approved
Node JS (Install) 6.3.0 1952 Sunday, July 17, 2016 Approved
Node JS (Install) 6.2.2 3166 Friday, June 17, 2016 Approved
Node JS (Install) 6.2.1 758 Thursday, June 2, 2016 Approved
Node JS (Install) 6.2.0 709 Tuesday, May 17, 2016 Approved
Node JS (Install) 6.1.0 2319 Sunday, May 8, 2016 Approved
Node JS (Install) 5.12.0 239 Saturday, May 4, 2019 Approved
Node JS (Install) 5.10.1 65202 Wednesday, April 6, 2016 Approved
Node JS (Install) 5.10.0 3326 Friday, April 1, 2016 Approved
Node JS (Install) 5.9.1 4078 Wednesday, March 23, 2016 Approved
Node JS (Install) 5.9.0 3553 Wednesday, March 16, 2016 Approved
Node JS (Install) 5.8.0 3581 Thursday, March 10, 2016 Approved
Node JS (Install) 5.7.1 3466 Thursday, March 3, 2016 Approved
Node JS (Install) 5.7.0 6210 Tuesday, February 23, 2016 Approved
Node JS (Install) 5.6.0 5637 Tuesday, February 9, 2016 Approved
Node JS (Install) 5.5.0 6749 Thursday, January 21, 2016 Approved
Node JS (Install) 5.4.1 3637 Wednesday, January 13, 2016 Approved
Node JS (Install) 5.4.0 2850 Wednesday, January 6, 2016 Approved
Node JS (Install) 5.3.0 5976 Wednesday, December 16, 2015 Approved
Node JS (Install) 5.2.0 59136 Wednesday, December 9, 2015 Approved
Node JS (Install) 5.1.1 90371 Friday, December 4, 2015 Approved
Node JS (Install) 5.1.0 174746 Tuesday, November 17, 2015 Approved
Node JS (Install) 5.0.0 4775 Friday, November 6, 2015 Approved
Node JS (Install) 4.9.1 575 Friday, March 30, 2018 Approved
Node JS (Install) 4.9.0 371 Wednesday, March 28, 2018 Approved
Node JS (Install) 4.8.7 487 Friday, December 8, 2017 Approved
Node JS (Install) 4.8.6 519 Tuesday, November 7, 2017 Approved
Node JS (Install) 4.8.5 631 Thursday, November 2, 2017 Approved
Node JS (Install) 4.6.1 1041 Tuesday, October 18, 2016 Approved
Node JS (Install) 4.6.0 1050 Tuesday, October 18, 2016 Approved
Node JS (Install) 4.5.0 941 Tuesday, October 18, 2016 Approved
Node JS (Install) 4.4.7 2636 Wednesday, July 6, 2016 Approved
Node JS (Install) 4.4.6 544 Wednesday, July 6, 2016 Approved
Node JS (Install) 4.4.5 845 Tuesday, May 31, 2016 Approved
Node JS (Install) 4.4.4 649 Monday, May 9, 2016 Approved
Node JS (Install) 4.4.3 990 Thursday, April 14, 2016 Approved
Node JS (Install) 4.4.2 641 Wednesday, April 27, 2016 Approved
Node JS (Install) 4.4.0 1548 Thursday, March 10, 2016 Approved
Node JS (Install) 4.3.2 830 Thursday, March 3, 2016 Approved
Node JS (Install) 4.3.1 2833 Wednesday, February 17, 2016 Approved
Node JS (Install) 4.3.0 602 Tuesday, February 9, 2016 Approved
Node JS (Install) 4.2.6 838 Friday, January 22, 2016 Approved
Node JS (Install) 4.2.5 566 Thursday, January 21, 2016 Approved
Node JS (Install) 4.2.4 935 Wednesday, January 13, 2016 Approved
Node JS (Install) 4.2.3 504 Wednesday, January 13, 2016 Approved
Node JS (Install) 4.2.2 3795 Friday, November 6, 2015 Approved
Node JS (Install) 4.2.1 840 Friday, November 6, 2015 Approved
Node JS (Install) 4.2.0 649 Friday, November 6, 2015 Approved
Node JS (Install) 4.1.2 12144 Monday, October 5, 2015 Approved
Node JS (Install) 4.1.1 5026 Wednesday, September 23, 2015 Approved
Node JS (Install) 4.1.0 2916 Thursday, September 17, 2015 Approved
Node JS (Install) 4.0.0 3555 Thursday, September 10, 2015 Approved
Node JS (Install) 0.12.7 20742 Sunday, July 12, 2015 Approved
Node JS (Install) 0.12.6 3082 Saturday, July 4, 2015 Approved
Node JS (Install) 0.12.5 3902 Wednesday, June 24, 2015 Approved
Node JS (Install) 0.12.4 9102 Monday, May 25, 2015 Approved
Node JS (Install) 0.12.3 4258 Friday, May 15, 2015 Approved
Node JS (Install) 0.12.2 15118 Wednesday, April 1, 2015 Approved
Node JS (Install) 0.12.1 3453 Tuesday, March 24, 2015 Approved
Node JS (Install) 0.12.0 14544 Saturday, February 7, 2015 Approved
Node JS (Install) 0.10.36 3534 Tuesday, January 27, 2015 Approved
Node JS (Install) 0.10.35 5067 Friday, December 26, 2014 Approved
Node JS (Install) 0.10.34 1478 Thursday, December 18, 2014 Approved
Node JS (Install) 0.10.33 5592 Wednesday, October 29, 2014 Approved
Node JS (Install) 0.10.32 4364 Wednesday, September 17, 2014 Approved
Node JS (Install) 0.10.31 2893 Wednesday, August 20, 2014 Approved
Node JS (Install) 0.10.30 2554 Friday, August 1, 2014 Approved
Node JS (Install) 0.10.29 4269 Tuesday, June 17, 2014 Approved
Node JS (Install) 0.10.28 3788 Saturday, May 3, 2014 Approved
Node JS (Install) 0.10.27 622 Friday, May 2, 2014 Approved
Node JS (Install) 0.10.26 5226 Wednesday, February 19, 2014 Approved
Node JS (Install) 0.10.25 1985 Friday, January 24, 2014 Approved
Node JS (Install) 0.10.24 2159 Friday, December 20, 2013 Approved
Node JS (Install) 0.10.23 987 Thursday, December 12, 2013 Approved
Node JS (Install) 0.10.22 1783 Wednesday, November 13, 2013 Approved
Node JS (Install) 0.10.21 1620 Saturday, October 19, 2013 Approved
Node JS (Install) 0.10.20 1350 Tuesday, October 1, 2013 Approved
Node JS (Install) 0.10.19 924 Wednesday, September 25, 2013 Approved
Node JS (Install) 0.10.18 1351 Thursday, September 5, 2013 Approved
Node JS (Install) 0.10.17 1131 Thursday, August 22, 2013 Approved
Node JS (Install) 0.10.16 848 Saturday, August 17, 2013 Approved
Node JS (Install) 0.10.15 1356 Friday, July 26, 2013 Approved
Node JS (Install) 0.10.13 1110 Wednesday, July 10, 2013 Approved
Node JS (Install) 0.10.12 1346 Wednesday, June 19, 2013 Approved
Node JS (Install) 0.10.11 759 Friday, June 14, 2013 Approved
Node JS (Install) 0.10.10 874 Wednesday, June 5, 2013 Approved
Node JS (Install) 0.10.9 874 Friday, May 31, 2013 Approved
Node JS (Install) 0.10.8 871 Saturday, May 25, 2013 Approved
Node JS (Install) 0.10.7 745 Monday, May 20, 2013 Approved
Node JS (Install) 0.10.6 732 Wednesday, May 15, 2013 Approved
Node JS (Install) 0.10.5 1799 Wednesday, April 24, 2013 Approved
Node JS (Install) 0.10.4 860 Friday, April 12, 2013 Approved
Node JS (Install) 0.10.3 941 Thursday, April 4, 2013 Approved
Node JS (Install) 0.10.2 767 Friday, March 29, 2013 Approved
Node JS (Install) 0.10.1 805 Friday, March 22, 2013 Approved
Node JS (Install) 0.10.0 940 Tuesday, March 12, 2013 Approved
Node JS (Install) 0.8.22 4959 Thursday, March 7, 2013 Approved
Node JS (Install) 0.8.21.20130226 866 Tuesday, February 26, 2013 Approved
Node JS (Install) 0.8.21 662 Tuesday, February 26, 2013 Approved
Node JS (Install) 0.8.20.20130224 708 Sunday, February 24, 2013 Approved
Node JS (Install) 0.8.20 959 Saturday, February 16, 2013 Approved
Node JS (Install) 0.8.19 1052 Thursday, February 7, 2013 Approved
Node JS (Install) 0.8.18 1347 Saturday, January 19, 2013 Approved
Node JS (Install) 0.8.17 1010 Thursday, January 10, 2013 Approved
Node JS (Install) 0.8.16 1168 Friday, December 14, 2012 Approved
Node JS (Install) 0.8.15 8943 Tuesday, November 27, 2012 Approved
Node JS (Install) 0.8.14 1298 Friday, October 26, 2012 Approved
Node JS (Install) 0.8.12 873 Sunday, October 14, 2012 Approved
Node JS (Install) 0.8.11 894 Friday, September 28, 2012 Approved
Node JS (Install) 0.8.10 850 Wednesday, September 26, 2012 Approved
Node JS (Install) 0.8.9.20120913 934 Thursday, September 13, 2012 Approved
Node JS (Install) 0.8.9 657 Wednesday, September 12, 2012 Approved
Node JS (Install) 0.8.8 705 Sunday, August 26, 2012 Approved
Node JS (Install) 0.8.7 710 Thursday, August 16, 2012 Approved
Node JS (Install) 0.8.6 739 Wednesday, August 8, 2012 Approved
Node JS (Install) 0.8.5 689 Monday, August 6, 2012 Approved
Node JS (Install) 0.8.4 763 Friday, July 27, 2012 Approved
Node JS (Install) 0.8.3 690 Friday, July 20, 2012 Approved
Node JS (Install) 0.8.2 646 Tuesday, July 10, 2012 Approved
Node JS (Install) 0.8.1 904 Friday, June 29, 2012 Approved
Node JS (Install) 0.6.19 766 Friday, June 8, 2012 Approved
Node JS (Install) 0.6.18 758 Monday, May 21, 2012 Approved
Node JS (Install) 0.6.17 782 Friday, May 11, 2012 Approved
Node JS (Install) 0.6.16 615 Friday, May 11, 2012 Approved
Node JS (Install) 0.6.15 722 Wednesday, April 11, 2012 Approved
Node JS (Install) 0.6.14 628 Sunday, April 1, 2012 Approved
Node JS (Install) 0.6.13 641 Sunday, April 1, 2012 Approved
Node JS (Install) 0.6.12 682 Saturday, March 10, 2012 Approved
Node JS (Install) 0.6.11 717 Saturday, February 25, 2012 Approved
Node JS Install 0.6.10 707 Monday, February 6, 2012 Approved
Node JS Install 0.6.9 693 Monday, February 6, 2012 Approved
Node JS Install 0.6.8 705 Sunday, January 22, 2012 Approved
Node JS Install 0.6.7 638 Sunday, January 15, 2012 Approved
Node JS Install 0.6.6 687 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