Search Criteria
Package Details: hyper 3.4.1-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/hyper.git (read-only, click to copy) |
---|---|
Package Base: | hyper |
Description: | A terminal built on web technologies |
Upstream URL: | https://hyper.is/ |
Keywords: | hyper.js terminal |
Licenses: | MIT |
Conflicts: | hyperterm |
Replaces: | hyperterm |
Submitter: | aabmass |
Maintainer: | eclairevoyant |
Last Packager: | eclairevoyant |
Votes: | 63 |
Popularity: | 0.000000 |
First Submitted: | 2016-10-10 16:38 (UTC) |
Last Updated: | 2023-01-10 08:41 (UTC) |
Dependencies (7)
- alsa-lib
- electron20AUR (electron20-binAUR)
- gtk3 (gtk3-no_deadkeys_underlineAUR, gtk3-classic-xfceAUR, gtk3-classicAUR, gtk3-patched-filechooser-icon-viewAUR)
- libxss
- nss (nss-hgAUR)
- npm (corepackerAUR, python-nodejs-wheelAUR) (make)
- yarn (yarn-pnpm-corepackAUR, corepackerAUR, yarn-berryAUR) (make)
Latest Comments
1 2 3 4 5 6 .. 12 Next › Last »
9nkn0wn commented on 2025-03-27 17:26 (UTC)
Resolving the
ReferenceError: __dirname is not defined
Error in Hyper Terminal on Arch LinuxIf you're trying to install Hyper Terminal from Vercel on Arch Linux and encountered the error
ReferenceError: __dirname is not defined
, here's a solution to fix the problem.bash git clone https://aur.archlinux.org/hyper.git cd hyper
webpack.config.ts
File:Open the
webpack.config.ts
file in your preferred text editor and add the following line at the beginning of the file to define__dirname
:```typescript import path from 'path';
const __dirname = path.resolve();
// The rest of your webpack.config.ts code ```
Ensure you have the necessary dependencies installed, including
python-setuptools
:bash sudo pacman -S python-setuptools
Use
makepkg
with the--noextract
option to ensure your code modifications are used:bash makepkg -si --noextract
This should resolve the issue and allow you to install Hyper Terminal on your Arch Linux without errors.
If you have any further questions or need more help, feel free to ask!
dedguy21 commented on 2023-09-24 06:26 (UTC)
@hayao, thanks for that explanation and quick fix. Changed the PKBUILD from electron20 depend to just electron, and everything worked.
Thanks.
hayao commented on 2023-06-23 09:00 (UTC) (edited on 2023-06-23 09:02 (UTC) by hayao)
Hyper will show some errors due to not finding some files.
electron20 which is hyper's dependency has been broken and I cannot build it successfully.
I decided to install electron20-bin instead but electron20-bin will install their libraries to
/usr/lib/electron20/
but the PKGBUILD will make symlink for hyper to/usr/lib/electron
.Also I found that hyper will work with the latest electron.
Please change the path of symlink or upgrade dependency to fix the error.
armandleg commented on 2022-12-31 16:39 (UTC) (edited on 2022-12-31 16:39 (UTC) by armandleg)
I encountered errors when building this package related to
node-gyp
package, which can be solved by using version9.3.1
ofnode-gyp
instead of version9.1.0
. You can achieve this by calling e.g.:during
prepare()
step.armandleg commented on 2022-12-31 16:28 (UTC) (edited on 2022-12-31 16:29 (UTC) by armandleg)
Hello,
nodejs
package may be safely moved fromdepends
tomakedepends
(i.e. it is not needed for Hyper to run).mio-19 commented on 2022-12-15 18:43 (UTC) (edited on 2022-12-15 19:20 (UTC) by mio-19)
patch for building on arm:
chovy commented on 2022-08-26 08:59 (UTC)
new version 3.3.0 out
3d0 commented on 2022-08-24 01:03 (UTC)
The new version is out. https://github.com/vercel/hyper/releases/tag/v3.3.0
jdev082 commented on 2022-07-22 21:43 (UTC)
i don't understand why this was orphaned, a new stable release hasn't even been released yet. I can assure you the maintainer will probably update this package when 3.3.0 releases.
flakusha commented on 2022-06-13 09:33 (UTC)
Hello! I have updated npm dependency for hyper, but I cannot manage the wayland environment patch at the moment (lack of spare time), orphaning the package for now. v3.3.0 is not stable at the moment so I cannot risk updating to it.
1 2 3 4 5 6 .. 12 Next › Last »