mirror of
https://github.com/schlagmichdoch/PairDrop.git
synced 2025-04-20 15:06:15 -04:00
Test
This commit is contained in:
parent
10196cdf33
commit
abf96c0228
1 changed files with 6 additions and 6 deletions
10
README.md
10
README.md
|
@ -1,9 +1,10 @@
|
||||||
# Snapdrop
|
# Snapdrop
|
||||||
|
|
||||||
[Snapdrop](https://snapdrop.net) is a Progressive Web App inspired by Apple's Airdrop.
|
[Snapdrop](https://snapdrop.net): local file sharing in your browser - inspired by Apple's Airdrop.
|
||||||
|
|
||||||
#### Snapdrop is built with the following awesome technologies:
|
#### Snapdrop Version 2 is built with the following awesome technologies:
|
||||||
* Vanilla HTML / JS / CSS
|
* Vanilla HTML5 / ES6 / CSS3
|
||||||
|
* Progressive Web App
|
||||||
* [WebRTC](http://webrtc.org/)
|
* [WebRTC](http://webrtc.org/)
|
||||||
* [WebSockets](http://www.websocket.org/) fallback (iDevices don't support WebRTC)
|
* [WebSockets](http://www.websocket.org/) fallback (iDevices don't support WebRTC)
|
||||||
* [NodeJS](https://nodejs.org/en/)
|
* [NodeJS](https://nodejs.org/en/)
|
||||||
|
@ -24,7 +25,6 @@ It uses a P2P connection if WebRTC is supported by the browser. (WebRTC needs a
|
||||||
|
|
||||||
If WebRTC isn’t supported (Safari, IE) it uses a Web Sockets fallback for the file transfer. The server connects the clients with a stream.
|
If WebRTC isn’t supported (Safari, IE) it uses a Web Sockets fallback for the file transfer. The server connects the clients with a stream.
|
||||||
|
|
||||||
|
|
||||||
##### What about privacy? Will files be saved on third-party-servers?
|
##### What about privacy? Will files be saved on third-party-servers?
|
||||||
None of your files are ever saved on any server.
|
None of your files are ever saved on any server.
|
||||||
Snapdrop doesn't even use cookies or a database. If you are curious have a look [at the Server](https://github.com/RobinLinus/snapdrop/blob/master/server/ws-server.js).
|
Snapdrop doesn't even use cookies or a database. If you are curious have a look [at the Server](https://github.com/RobinLinus/snapdrop/blob/master/server/ws-server.js).
|
||||||
|
@ -50,7 +50,7 @@ ShareDrop uses WebRTC only and isn't compatible with Safari Browsers. Snapdrop u
|
||||||
npm install
|
npm install
|
||||||
node index.js
|
node index.js
|
||||||
cd ../client
|
cd ../client
|
||||||
python -m http.server
|
python -m SimpleHTTPServer
|
||||||
```
|
```
|
||||||
|
|
||||||
Now point your browser to http://localhost:8000.
|
Now point your browser to http://localhost:8000.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue