2016-07-01 11:00:09 -08:00
|
|
|
# hyperterm
|
2016-06-30 22:21:29 -08:00
|
|
|
|
2016-07-02 11:03:45 -08:00
|
|
|
## Contribute
|
2016-07-02 09:57:32 -08:00
|
|
|
|
|
|
|
|
To install `package.json` dependencies in a way where the native
|
|
|
|
|
modules are built with `electron`, run:
|
|
|
|
|
|
|
|
|
|
```bash
|
2016-07-13 13:06:05 -08:00
|
|
|
$ ./scripts/install.sh
|
2016-07-02 09:57:32 -08:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
```
|
|
|
|
|
|
2016-07-02 14:19:37 -08:00
|
|
|
Then you can run in the main directory:
|
2016-07-02 09:57:32 -08:00
|
|
|
|
|
|
|
|
```bash
|
2016-07-02 11:03:45 -08:00
|
|
|
$ npm start
|
2016-07-02 09:57:32 -08:00
|
|
|
```
|
|
|
|
|
|
2016-07-02 11:03:45 -08:00
|
|
|
...to launch the app!
|