Quine's fork of "Hyper" by Vercel, A terminal built on web technologies
Find a file
2017-09-15 19:23:03 +01: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 Revert #2126 (#2202) 2017-09-15 19:23:03 +01: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 Windows support and first-class Linux support (#946) 2016-11-11 15:18:04 -02:00
lib Set session CWD only if there is an active session (#2191) 2017-09-11 15:06:44 +02:00
test Unit tests for to-electron-background-color (#1409) 2017-02-16 15:44:44 -03: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
.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 Updated dependencies to the latest version (#2146) 2017-08-31 15:20:39 +02:00
.yarnrc Made Circle CI builds work (#2110) 2017-08-22 00:04:15 +02:00
appveyor.yml Updated dependencies to the latest version (#2146) 2017-08-31 15:20:39 +02:00
circle.yml Don't build on master, except for releases (#2132) 2017-08-30 19:39:04 +02:00
license.md Tell Yarn to cache dependencies (#2113) 2017-08-22 01:07:48 +02:00
package.json Upgrade Electron to v1.7.6 (#2193) 2017-09-11 10:08:32 +02:00
readme.md Add vscode debug config, update readme (#2181) 2017-09-07 11:06:05 +02:00
webpack.config.js Reverted class names to as they were before (#2139) 2017-08-30 22:59:01 +02:00
yarn.lock Fix yarn.lock (#2194) 2017-09-11 16:06:24 +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

  1. Install the dependencies
  • If you are running Linux, install icnsutils, graphicsmagick, xz-utils, npm, rpm and yarn
  • If you are running Windows, install yarn (If you use the MSI installer you will need to install npm), and windows-build-tools with yarn global add windows-build-tools.
  • Yarn installation instructions: https://yarnpkg.com/en/docs/install
  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.