https://github.com/bit-nation/pangea-electron
Pangea's pre-Alpha Client on SSB
https://github.com/bit-nation/pangea-electron
desktop-client electron-app linux mac release
Last synced: 4 months ago
JSON representation
Pangea's pre-Alpha Client on SSB
- Host: GitHub
- URL: https://github.com/bit-nation/pangea-electron
- Owner: Bit-Nation
- Created: 2016-12-01T15:50:20.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-12-10T12:16:45.000Z (over 9 years ago)
- Last Synced: 2025-04-11T23:37:02.349Z (about 1 year ago)
- Topics: desktop-client, electron-app, linux, mac, release
- Language: JavaScript
- Homepage:
- Size: 674 KB
- Stars: 2
- Watchers: 14
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
pangea-electron
==============
forked from [patchwork-electron](https://github.com/ssbc/patchwork-electron)
## Running from source
```bash
$ cd ~
$ git clone https://github.com/Bit-Nation/pangea-electron.git
$ cd pangea-electron
$ npm install
$ npm start
```
To use the latest patchwork version, do the following:
```bash
$ cd ~
$ git clone https://github.com/Bit-Nation/pangea.git
$ cd pangea
$ npm install
$ npm link
$ cd ~/pangea-electron/app
$ npm link pangea
```
## Troubleshooting
If you get an error similar to:
> Uncaught Exception:
> Error: Module version mismatch. Expected 50, got 48.
It means your installed node version is not compatible with the version of Electron pangea uses. You'll need to rebuild your node module folder using:
```bash
$ npm run rebuild
```
## Building
```bash
$ npm run release
```
## More info
This repo is based on https://github.com/szwacz/electron-boilerplate.
Check that repo to get more information on the structure and scripts.