Quine's fork of "Hyper" by Vercel, A terminal built on web technologies
Find a file
Guillermo Rauch de69aab095 Fixed broken resizing (#2273)
* simplify and fix resizing

* don't lint built bundles

* bump eslint
2017-09-24 12:06:17 +02:00
.github Update issue template to show how checkboxes work (#1649) 2017-03-14 16:30:36 +01:00
.vscode Add vscode debug config, update readme (#2181) 2017-09-07 11:06:05 +02:00
app 2.0.2 2017-09-21 00:15:00 +02:00
assets Windows titlebar improvements (#1307) 2017-01-10 21:45:49 -08:00
bin Ship yarn with hyper (#381) 2017-08-14 09:42:28 +02:00
build Add canary icons and setup CIs 2017-09-20 01:09:39 +02:00
lib Fixed broken resizing (#2273) 2017-09-24 12:06:17 +02:00
test Merge branch 'master' into canary 2017-09-20 01:39:55 +02:00
website Add default keymaps reference to documentation (#2185) 2017-09-08 23:05:07 +02:00
.editorconfig Fix for markdown files (#618) 2016-08-14 21:10:41 +02:00
.eslintignore Fixed broken resizing (#2273) 2017-09-24 12:06:17 +02:00
.gitattributes Ensure line endings are correct on Windows (#1230) 2017-01-02 17:56:47 -02:00
.gitignore Make builds work again and catch squirrel errors on windows (#2078) 2017-08-13 07:03:35 +02:00
.travis.yml Add canary icons and setup CIs 2017-09-20 01:09:39 +02:00
.yarnrc Made Circle CI builds work (#2110) 2017-08-22 00:04:15 +02:00
appveyor.yml Add canary icons and setup CIs 2017-09-20 01:09:39 +02:00
circle.yml Add canary icons and setup CIs 2017-09-20 01:09:39 +02:00
license.md Tell Yarn to cache dependencies (#2113) 2017-08-22 01:07:48 +02:00
package.json Fixed broken resizing (#2273) 2017-09-24 12:06:17 +02:00
readme.md Improve readme (#2196) 2017-09-17 21:44:34 +01:00
webpack.config.js Add prettier and resolve all lint errors 2017-09-10 16:04:13 +02:00
yarn.lock Fixed broken resizing (#2273) 2017-09-24 12:06:17 +02:00

macOS CI Status Windows CI status Linux CI status Slack Channel Changelog #213 XO code style

For more details, head to: https://hyper.is

Usage

Download the latest release!

If you're on macOS, you can also use Homebrew Cask to download the app by running these commands:

brew update
brew cask install hyper

If you're on windows, you can use chocolatey to install the app by running the following command (package information can be found here):

choco install hyper

Note: The version available on Homebrew Cask or Chocolatey may not be the latest. Please consider downloading it from here if that's the case.

Contribute

Regardless of the platform you are working on, you will need to have Yarn installed. If you have never installed Yarn before, you can find out how at: https://yarnpkg.com/en/docs/install.

  1. Install necessary packages:
  • Windows
    • Be sure to run yarn global add windows-build-tools to install windows-build-tools.
  • macOS
    • Once you have installed Yarn, you can skip this section!
  • Linux
    • RPM-based
      • GraphicsMagick
      • libicns-utils
      • xz (Installed by default on some distributions.)
    • Debian-based
      • graphicsmagick
      • icnsutils
      • xz-utils
  1. Fork this repository to your own GitHub account and then clone it to your local device
  2. Install the dependencies: yarn
  3. Build the code and watch for changes: yarn run dev
  4. To run hyper
  • yarn run app from another terminal tab/window/pane
  • If you are using Visual Studio Code, select Launch Hyper in debugger configuration to launch a new Hyper instance with debugger attached.

To make sure that your code works in the finished application, you can generate the binaries like this:

yarn run dist

After that, you'll see the binary in the ./dist folder!

Known issues that can happen during development

Error building node-pty

If after building during development you get an alert dialog related to node-pty issues, make sure its build process is working correctly by running yarn run rebuild-node-pty.

If you're on macOS, this typically is related to Xcode issues (like not having agreed to the Terms of Service by running sudo xcodebuild after a fresh Xcode installation).

Error with codesign on macOS when running yarn run dist

If you have issues in the codesign step when running yarn run dist on macOS, you can temporarily disable code signing locally by setting export CSC_IDENTITY_AUTO_DISCOVERY=false for the current terminal session.