mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-13 04:28:41 -09:00
Quine's fork of "Hyper" by Vercel, A terminal built on web technologies
| app | ||
| assets | ||
| build | ||
| lib | ||
| test | ||
| .editorconfig | ||
| .eslintignore | ||
| .gitignore | ||
| .travis.yml | ||
| HISTORY.md | ||
| LICENSE.md | ||
| package.json | ||
| README.md | ||
| webpack.config.js | ||
For more details, head to: https://hyperterm.org
Usage
You can download the latest release here.
If you're on macOS, you can also use Homebrew Cask to download the app by running these commands:
$ brew cask update
$ brew cask install hyperterm
Contribute
- Install platform specific build dependencies as detailed below
- Fork this repository to your own GitHub account and then clone it to your local device
- Install the dependencies:
npm install - Build the code and watch for changes:
npm run dev - In a new tab, start the application:
npm start
If you want to build the binaries for all specified platforms, run the command:
$ npm run pack
After that, you'll see the binaries in the ./dist folder!
Required Build Dependencies
To Build on OSX:
For Linux:
$ brew install gnu-tar libicns graphicsmagick xz
For Windows:
$ brew install wine --without-x11
$ brew install mono
To Build on Linux:
For Linux:
$ sudo apt-get install --no-install-recommends -y icnsutils graphicsmagick xz-utils
For Windows:
- Install Wine (1.8+ is required):
$ sudo add-apt-repository ppa:ubuntu-wine/ppa -y
$ sudo apt-get update
$ sudo apt-get install --no-install-recommends -y wine1.8
- Install Mono (4.2+ is required):
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
echo "deb http://download.mono-project.com/repo/debian wheezy main" | sudo tee /etc/apt/sources.list.d/mono-xamarin.list
sudo apt-get update
sudo apt-get install --no-install-recommends -y mono-devel ca-certificates-mono
