Skip to content
This repository has been archived by the owner on Aug 13, 2022. It is now read-only.

Latest commit

 

History

History
29 lines (22 loc) · 1.13 KB

README.md

File metadata and controls

29 lines (22 loc) · 1.13 KB

snapdrop-desktop

Just the original Snapdrop, with complete Electron App.

Modified from DrBassman/node-snapdrop so that when server & clients are on the same LAN, clients discover each other.

Quickstart

development

# install all dependencies
npm install

# start application in development
npm start

production

There is using bytenode to generate .jsc files.

Please note .jsc files must run with the same Node.js version that was used to compile it (using same architecture of course). Also, .jsc files are CPU-agnostic. However, you should run your tests before and after deployment, because V8 sanity checks include some checks related to CPU supported features, so this may cause errors in some rare cases.

# build application in production
npm run build

Thanks