mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-13 04:28:41 -09:00
32 lines
588 B
Markdown
32 lines
588 B
Markdown
# hyperterm
|
|
|
|

|
|
|
|
For downloads, documentation and the developer API head to: https://hyperterm.org
|
|
|
|
## Contribute
|
|
|
|
To install `package.json` dependencies in a way where the native
|
|
modules are built with `electron`, run:
|
|
|
|
```bash
|
|
$ ./scripts/install.sh
|
|
```
|
|
|
|
Then, you want to make sure `app/dist` is populated. I recommend
|
|
running `webpack` with `--watch` so that any changes you make
|
|
to the app are detected.
|
|
|
|
```bash
|
|
$ cd app/
|
|
$ npm install
|
|
$ webpack --watch
|
|
```
|
|
|
|
Then you can run in the main directory:
|
|
|
|
```bash
|
|
$ npm start
|
|
```
|
|
|
|
...to launch the app!
|