Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alicewriteswrongs/signal-nwjs
packaging and running Signal-Desktop with nw.js
https://github.com/alicewriteswrongs/signal-nwjs
Last synced: 25 days ago
JSON representation
packaging and running Signal-Desktop with nw.js
- Host: GitHub
- URL: https://github.com/alicewriteswrongs/signal-nwjs
- Owner: alicewriteswrongs
- Created: 2016-01-06T12:46:45.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-17T02:09:54.000Z (almost 8 years ago)
- Last Synced: 2024-10-30T06:59:37.966Z (2 months ago)
- Language: Shell
- Size: 1.95 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Signal nw.js
[nw.js](http://nwjs.io/) provides for easily running Chrome applications
in it's native app containers (which ship Node and all application files
as a standard platform native application.## Building a Signal Desktop packaged application
First you need to install the NW builder:
```
npm install -g nw-builder
```There's a shell script called `package.sh` which will prepare this repo to
produce a packaged app. So just do:```
./package.sh
```and then you should be able to execute
```
nwbuild -p Linux64 .
```to build a package!
## Manually running signal in nw.js
If you want to do this yourself you can do the following (after installing
[nw.js](http://nwjs.io/):```
git clone [email protected]:WhisperSystems/Signal-Desktop.git
cd Signal-Desktop
npm install
grunt
nw ./dist
```and that's it!