https://github.com/hackjutsu/lorikeet
File explorer implemented in NW.js and Electron
https://github.com/hackjutsu/lorikeet
electron electron-app electron-application
Last synced: 9 months ago
JSON representation
File explorer implemented in NW.js and Electron
- Host: GitHub
- URL: https://github.com/hackjutsu/lorikeet
- Owner: hackjutsu
- Created: 2016-12-20T00:30:28.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-12-21T18:35:53.000Z (about 9 years ago)
- Last Synced: 2025-02-07T20:23:12.097Z (11 months ago)
- Topics: electron, electron-app, electron-application
- Language: JavaScript
- Size: 549 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# lorikeet
A cross-platform file explorer implemented in both Electron and NW.js
## Electron
We use [electron-builder](https://github.com/electron-userland/electron-builder) for Electron app packaging. Follow these [instructions](https://github.com/electron-userland/electron-builder/wiki/Multi-Platform-Build) to set up your Mac for multiple platform builds.
To build app for Windows, Mac and Linux:
```bash
cd electron
npm install
node_modules/.bin/build -mwl
```
## NW.js
We use [nw-builder](https://github.com/nwjs/nw-builder) for Electron app packaging.
```bash
cd nwjs
npm install
npm install evshiron/nw-builder -g
nwbuild –p win32,win64,osx32,osx64,linux32,linux64 –o ./build .
```
---
