Welcome to the Chocolatey Community Package Repository! The packages found in this section of the site are provided, maintained, and moderated by the community.
Moderation
Every version of each package undergoes a rigorous moderation process before it goes live that typically includes:
- Security, consistency, and quality checking
- Installation testing
- Virus checking through VirusTotal
- Human moderators who give final review and sign off
More detail at Security and Moderation.
Organizational Use
If you are an organization using Chocolatey, we want your experience to be fully reliable. Due to the nature of this publicly offered repository, reliability cannot be guaranteed. Packages offered here are subject to distribution rights, which means they may need to reach out further to the internet to the official locations to download files at runtime.
Fortunately, distribution rights do not apply for internal use. With any edition of Chocolatey (including the free open source edition), you can host your own packages and cache or internalize existing community packages.
Disclaimer
Your use of the packages on this site means you understand they are not supported or guaranteed in any way. Learn more...
- Passing
- Failing
- Pending
- Unknown / Exempted
Downloads:
40,445
Downloads of v 1.2.3:
552
Last Update:
09 Aug 2020
Package Maintainer(s):
Software Author(s):
- https://github.com/denoland/deno/contributors
Tags:
v8 deno denoland deno_install javascript typescript rust tokio runtime- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Deno
This is not the latest version of Deno available.
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
40,445
Downloads of v 1.2.3:
552
Maintainer(s):
Software Author(s):
- https://github.com/denoland/deno/contributors
Edit Package
To edit the metadata for a package, please upload an updated version of the package.
Chocolatey's Community Package Repository currently does not allow updating package metadata on the website. This helps ensure that the package itself (and the source used to build the package) remains the one true source of package metadata.
This does require that you increment the package version.
Deno 1.2.3
This is not the latest version of Deno available.
All Checks are Passing
2 Passing Test
To install Deno, run the following command from the command line or from PowerShell:
To upgrade Deno, run the following command from the command line or from PowerShell:
To uninstall Deno, run the following command from the command line or from PowerShell:
NOTE: This applies to both open source and commercial editions of Chocolatey.
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
-
Open Source
- Download the Package Download
- Follow manual internalization instructions
-
Package Internalizer (C4B)
- Run
choco download deno --internalize --version=1.2.3 --source=https://community.chocolatey.org/api/v2
(additional options) - Run
choco push --source="'http://internal/odata/repo'"
for package and dependencies - Automate package internalization
- Run
3. Enter your internal repository url
(this should look similar to https://community.chocolatey.org/api/v2)
4. Choose your deployment method:
choco upgrade deno -y --source="'STEP 3 URL'" [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 deno -y --source="'STEP 3 URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Ensure deno installed
win_chocolatey:
name: deno
state: present
version: 1.2.3
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'deno' do
action :install
version '1.2.3'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: deno,
Version: 1.2.3,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller deno
{
Name = 'deno'
Ensure = 'Present'
Version = '1.2.3'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'deno':
provider => 'chocolatey',
ensure => '1.2.3',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install deno version="1.2.3" source="STEP 3 URL"
See docs at https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html.
5. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
This package was approved as a trusted package on 09 Aug 2020.
Deno aims to be a productive and secure scripting environment for the modern programmer.
Deno will always be distributed as a single executable. Given a URL to a Deno program, it is runnable with nothing more than the 10 megabyte zipped executable. Deno explicitly takes on the role of both runtime and package manager. It uses a standard browser-compatible protocol for loading modules: URLs.
Deno provides security guarantees about how programs can access your system with the default being the most restrictive secure sandbox.
Deno provides a set of reviewed (audited) standard modules that are guaranteed to work with Deno.
$ErrorActionPreference = 'Stop';
$url64 = 'https://github.com/denoland/deno/releases/download/v1.2.3/deno-x86_64-pc-windows-msvc.zip'
$checksum64 = 'eff0a79a43feaf3b43291a4f9c1be6a36693442f13e64cbc5d6c55189f7bd51127ca020a7d0227b37dcdde0090b2612a3a7082a6ded535d542d34595bf8c7641'
$checksumType64 = 'sha512'
$UnzipLocation = Join-Path $env:ChocolateyInstall (Join-Path 'lib' $env:ChocolateyPackageName)
Install-ChocolateyZipPackage -PackageName $env:ChocolateyPackageName -Url64 $url64 -UnzipLocation $UnzipLocation -CheckSum64 $checksum64 -CheckSumType64 $checksumType64
Write-Output "Run 'deno --help' to get started"
Log in or click on link to see number of positives.
- deno.1.2.3.nupkg (7a6d46fc974a) - ## / 62
- deno-x86_64-pc-windows-msvc.zip (a7137391de62) - ## / 65
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.
Version | Downloads | Last Updated | Status |
---|---|---|---|
Deno 1.9.0 | 665 | Wednesday, April 14, 2021 | Approved |
Deno 1.8.3 | 839 | Friday, April 2, 2021 | Approved |
Deno 1.8.2 | 1063 | Monday, March 22, 2021 | Approved |
Deno 1.8.1 | 933 | Wednesday, March 10, 2021 | Approved |
Deno 1.8.0 | 730 | Wednesday, March 3, 2021 | Approved |
Deno 1.7.5 | 429 | Friday, February 19, 2021 | Approved |
Deno 1.7.4 | 976 | Saturday, February 13, 2021 | Approved |
Deno 1.7.2 | 641 | Saturday, February 6, 2021 | Approved |
Deno 1.7.1 | 714 | Friday, January 29, 2021 | Approved |
Deno 1.7.0 | 589 | Saturday, January 23, 2021 | Approved |
Deno 1.6.3 | 1435 | Thursday, December 31, 2020 | Approved |
Deno 1.6.2 | 608 | Wednesday, December 23, 2020 | Approved |
Deno 1.6.1 | 707 | Tuesday, December 15, 2020 | Approved |
Deno 1.6.0 | 644 | Tuesday, December 8, 2020 | Approved |
Deno 1.5.4 | 1002 | Monday, November 23, 2020 | Approved |
Deno 1.5.3 | 463 | Monday, November 16, 2020 | Approved |
Deno 1.5.2 | 760 | Monday, November 9, 2020 | Approved |
Deno 1.5.1 | 682 | Saturday, October 31, 2020 | Approved |
Deno 1.5.0 | 460 | Tuesday, October 27, 2020 | Approved |
Deno 1.4.6 | 1024 | Saturday, October 10, 2020 | Approved |
Deno 1.4.5 | 324 | Thursday, October 8, 2020 | Approved |
Deno 1.4.4 | 487 | Saturday, October 3, 2020 | Approved |
Deno 1.4.3 | 141 | Friday, October 2, 2020 | Approved |
Deno 1.4.2 | 629 | Friday, September 25, 2020 | Approved |
Deno 1.4.1 | 654 | Saturday, September 19, 2020 | Approved |
Deno 1.4.0 | 597 | Sunday, September 13, 2020 | Approved |
Deno 1.3.3 | 723 | Saturday, September 5, 2020 | Approved |
Deno 1.3.2 | 532 | Saturday, August 29, 2020 | Approved |
Deno 1.3.1 | 635 | Saturday, August 22, 2020 | Approved |
Deno 1.3.0 | 636 | Friday, August 14, 2020 | Approved |
Deno 1.2.3 | 552 | Sunday, August 9, 2020 | Approved |
Deno 1.2.2 | 693 | Saturday, August 1, 2020 | Approved |
Deno 1.2.1 | 719 | Friday, July 24, 2020 | Approved |
Deno 1.2.0 | 885 | Tuesday, July 14, 2020 | Approved |
Deno 1.1.3 | 945 | Saturday, July 4, 2020 | Approved |
Deno 1.1.2 | 793 | Saturday, June 27, 2020 | Approved |
Deno 1.1.1 | 803 | Saturday, June 20, 2020 | Approved |
Deno 1.1.0 | 1025 | Saturday, June 13, 2020 | Approved |
Deno 1.0.5 | 1403 | Thursday, June 4, 2020 | Approved |
Deno 1.0.4 | 266 | Wednesday, June 3, 2020 | Approved |
Deno 1.0.3 | 763 | Saturday, May 30, 2020 | Approved |
Deno 1.0.2 | 1623 | Saturday, May 23, 2020 | Approved |
Deno 1.0.1 | 519 | Thursday, May 21, 2020 | Approved |
Deno 1.0.0 | 3488 | Thursday, May 14, 2020 | Approved |
Deno 0.42.0 | 1325 | Thursday, April 30, 2020 | Approved |
Deno 0.41.0 | 271 | Wednesday, April 22, 2020 | Approved |
Deno 0.38.0 | 562 | Sunday, March 29, 2020 | Approved |
Deno 0.37.1 | 95 | Tuesday, March 24, 2020 | Approved |
Deno 0.36.0 | 345 | Thursday, March 12, 2020 | Approved |
Deno 0.35.0 | 252 | Saturday, February 29, 2020 | Approved |
Deno 0.34.0 | 318 | Friday, February 21, 2020 | Approved |
Deno 0.33.0 | 261 | Friday, February 14, 2020 | Approved |
Deno 0.32.0 | 250 | Tuesday, February 4, 2020 | Approved |
Deno 0.31.0 | 350 | Friday, January 24, 2020 | Approved |
Deno 0.30.0 | 282 | Saturday, January 18, 2020 | Approved |
Deno 0.29.0 | 112 | Friday, January 10, 2020 | Approved |
Deno 0.28.1 | 111 | Friday, January 3, 2020 | Approved |
Deno 0.28.0 | 60 | Thursday, January 2, 2020 | Approved |
Deno 0.27.0 | 70 | Thursday, December 19, 2019 | Approved |
Deno 0.26.0 | 73 | Tuesday, December 17, 2019 | Approved |
Deno 0.25.0 | 246 | Wednesday, November 27, 2019 | Approved |
Deno 0.24.0 | 73 | Saturday, November 16, 2019 | Approved |
Deno 0.23.0 | 73 | Wednesday, November 6, 2019 | Approved |
Deno 0.20.0 | 110 | Monday, October 28, 2019 | Approved |
This package has no dependencies.
Ground Rules:
- This discussion is only about Deno and the Deno 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 Deno, 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.