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:

80,448

Downloads of v 1.3.0:

723

Last Update:

14 Mar 2017

Package Maintainer(s):

Software Author(s):

  • zeit

Tags:

hyper admin console terminal

hyper

This is not the latest version of hyper available.

  • 1
  • 2
  • 3

1.3.0 | Updated: 14 Mar 2017

Downloads:

80,448

Downloads of v 1.3.0:

723

Software Author(s):

  • zeit

hyper 1.3.0

This is not the latest version of hyper available.

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Resulted in Flagged:

This package was submitted (and approved) prior to automated virus scanning integration into the package moderation processs.

We recommend clicking the "Details" link to make your own decision on installing this package.

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install hyper, run the following command from the command line or from PowerShell:

>

To upgrade hyper, run the following command from the command line or from PowerShell:

>

To uninstall hyper, 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 hyper -y --source="'INTERNAL REPO URL'" --version="'1.3.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 hyper -y --source="'INTERNAL REPO URL'" --version="'1.3.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 hyper
  win_chocolatey:
    name: hyper
    version: '1.3.0'
    source: INTERNAL REPO URL
    state: present

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


chocolatey_package 'hyper' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '1.3.0'
end

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


cChocoPackageInstaller hyper
{
    Name     = "hyper"
    Version  = "1.3.0"
    Source   = "INTERNAL REPO URL"
}

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


package { 'hyper':
  ensure   => '1.3.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...

Package Approved

This package was approved by moderator AdmiringWorm on 16 Mar 2017.

Description

Project goals

The goal of the project is to create a beautiful and extensible experience for command-line interface users, built on open web standards.
In the beginning, our focus will be primarily around speed, stability and the development of the correct API for extension authors.
In the future, we anticipate the community will come up with innovative additions to enhance what could be the simplest, most powerful and well-tested interface for productivity.


tools\chocolateyinstall.ps1
$ErrorActionPreference = 'Stop'; # stop on all errors
Install-ChocolateyPackage -packageName 'hyper' -FileType exe -SilentArgs '--silent' -Url64 'https://github.com/zeit/hyper/releases/download/1.3.0/hyper-Setup-1.3.0.exe' -checksum64 'C132ADB152D9DCFAD7A779919C3038038D92D3026DCC895EEEACE6DEE8D7BAB3' -checksumType64 'sha256' 

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
Hyper (Install) 3.4.0 330 Monday, January 2, 2023 Approved
Hyper (Install) 3.3.0 2924 Tuesday, August 23, 2022 Approved
Hyper (Install) 3.3.0-canary 211 Sunday, February 6, 2022 Approved
Hyper (Install) 3.2.3 2727 Saturday, April 16, 2022 Approved
Hyper (Install) 3.2.2 315 Tuesday, April 12, 2022 Approved
Hyper (Install) 3.2.1 381 Tuesday, April 5, 2022 Approved
Hyper (Install) 3.2.0 1654 Saturday, February 5, 2022 Approved
Hyper (Install) 3.2.0-canary 89 Monday, January 10, 2022 Exempted
Hyper (Install) 3.1.5 991 Saturday, January 8, 2022 Approved
Hyper (Install) 3.1.4 2834 Sunday, October 10, 2021 Approved
Hyper (Install) 3.1.3 1394 Saturday, September 11, 2021 Approved
Hyper (Install) 3.1.2 1274 Sunday, August 15, 2021 Approved
Hyper (Install) 3.0.2 23656 Friday, May 10, 2019 Approved
Hyper (Install) 3.0.1-canary 266 Thursday, May 9, 2019 Approved
Hyper (Install) 3.0.0 990 Monday, May 6, 2019 Approved
Hyper (Install) 3.0.0-canary 561 Wednesday, January 2, 2019 Approved
Hyper (Install) 2.1.2 4715 Friday, February 8, 2019 Approved
Hyper (Install) 2.1.1 1995 Wednesday, January 9, 2019 Approved
Hyper (Install) 2.1.0 1762 Sunday, December 16, 2018 Approved
Hyper (Install) 2.1.0-canary 434 Thursday, October 4, 2018 Exempted
hyper 2.0.0 9348 Tuesday, April 17, 2018 Approved
hyper 1.4.8 5527 Monday, October 2, 2017 Approved
hyper 1.4.7 809 Thursday, September 21, 2017 Approved
hyper 1.4.6 542 Tuesday, September 19, 2017 Approved
hyper 1.4.4 650 Thursday, September 14, 2017 Approved
hyper 1.4.3 680 Tuesday, September 5, 2017 Approved
hyper 1.3.3 3218 Saturday, May 20, 2017 Approved
hyper 1.3.1 1560 Tuesday, March 14, 2017 Approved
hyper 1.3.0 723 Tuesday, March 14, 2017 Approved
hyper 1.1.0 1590 Tuesday, January 10, 2017 Approved
hyper 1.0.1 490 Tuesday, January 10, 2017 Approved

Better perf, fewer bugs, unprecedented beauty

Improvements

Set cursorBlink: true in ~/.hyper.js to get this:

2017-03-09 11 51 38

  • Thanks @henrikdahl 0ee48c9841d700f35907f5ad59617f43f12dc6b4

Beautiful selection ranges

We now synchronize the color of your caret with the selection range's styling. It's amazing

screen shot 2017-03-09 at 11 44 47 am

  • Thanks @henrikdahl 600f815dffe6fd835dfef5e3fde568a09bd286db

Performance

We are starting to roll out some nice performance improvements. This demo of rendering 3D objects using lots of (braille) characters now runs much more fluently on our testing device (Macbook 12)
2017-03-09 11 38 31

  • This is ongoing work. We have many more optimizations coming
  • Thanks @rauchg dc3b90028b4d476b6b6f888f7602920e2ec5db76 fe6e2977bda9f6320629d3fc4453f7f87ab398f0 9f9da68408ced9b4f0996401420eff51bccd29ca 95141ac5376a72d5900bbfaec6f26628a6240600

Better rendering of multiple tabs

<img src="https://cloud.githubusercontent.com/assets/13041/23768566/4db11fd8-04c1-11e7-980a-c093d4ec61ef.png" width="350" /> <img src="https://cloud.githubusercontent.com/assets/13041/23768565/4dafd858-04c1-11e7-8212-a48798a97f25.png" width="350" />

<img src="https://cloud.githubusercontent.com/assets/13041/23768567/4db2b4a6-04c1-11e7-8047-6f449a8cb3b7.png" width="350" /> <img src="https://cloud.githubusercontent.com/assets/13041/23768564/4dae8246-04c1-11e7-840d-0bb76f395bf0.png" width="350" />

  • Thanks @henrikdahl 78709d93cfb235f29cdd5d828f595796bad44410

UI font family is now configurable

Via the uiFontFamily setting. Allows you to create themes like this:

<img src="https://cloud.githubusercontent.com/assets/13041/23768953/8fb5f43e-04c2-11e7-8159-6c7736b3fe88.png" width="500" />

  • wow
  • Thanks @henrikdahl ade9ad39fd1a79ac399abd1439ddce233bda103a

Improve CLI

Adds support for --help and --version. One of many improvements to come to the hyper CLI!

  • Thanks @supersam654 edff890f5fcd4e975c42169153fe8c2be9039fd7

Bug fixes

Text flickering upon hover on certain platforms

  • Fixes #1490, #1575, #1579 (#1602)
  • Thanks @chabou 1f3ea081e8cbc97dff900cc0b9f9d588c44e13e8

Plugin Installation Error notification

An unfortunate alert that would show whenever you would launch Hyper is now gone. Sorry about that one.

Plugin installation on Windows

We now correctly handling using the right sub-shell on win32 to install plugins

  • Thanks @kwonoj 3df8274bf03fbfe75114781e160b33874cd73c3f

Plugin installation on Fish shell

We now special case Fish to make it work

  • Thanks @henrikdahl 63ab33daa9d721cdc6e7bce630ede0e06da2b250

Fix config editing on Windows

Bash on Windows now launches the correct program for editing the config

  • Thanks @stefanivic 36f96abb1d28ba85ebe678df2e87268b66aaf018

Fix bad state when closing a group of terms

  • Thanks @chabou 75b5eb7d3f29ece4872a0a4dd6c099f81907f88b

Meta improvements

  • Start to add some unit tests for low level functionality. Thanks @kandros 67d696329682daf359e02d1eac5bc2ccf7aaa660
  • Fix typo in default config @martinvd 7ae7a523d1cd2bd183ebe1ede3f420ad3db429e0
  • Bump electron @rauchg 12bda394beeda75b88f8f0eb69f5de0caa2b444f
  • Improve website and plugins documentation
    • @gsklee 717857ed6171a3f3edcfc6fcbd0cc267d023f65f
    • @chabou 3fb2e04eae3409eadc03a0b42ac736265c2b7f2a
  • Improve default config with notes about where to find other tops @MatthiasWinkelmann fc829d23e8edb1160986d4eb51a9afda92403b94

This package has no dependencies.

Discussion for the hyper Package

Ground Rules:

  • This discussion is only about hyper and the hyper 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 hyper, 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