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](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:
|
||||
* Vanilla HTML / JS / CSS
|
||||
#### Snapdrop Version 2 is built with the following awesome technologies:
|
||||
* Vanilla HTML5 / ES6 / CSS3
|
||||
* Progressive Web App
|
||||
* [WebRTC](http://webrtc.org/)
|
||||
* [WebSockets](http://www.websocket.org/) fallback (iDevices don't support WebRTC)
|
||||
* [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.
|
||||
|
||||
|
||||
##### What about privacy? Will files be saved on third-party-servers?
|
||||
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).
|
||||
|
@ -50,7 +50,7 @@ ShareDrop uses WebRTC only and isn't compatible with Safari Browsers. Snapdrop u
|
|||
npm install
|
||||
node index.js
|
||||
cd ../client
|
||||
python -m http.server
|
||||
python -m SimpleHTTPServer
|
||||
```
|
||||
|
||||
Now point your browser to http://localhost:8000.
|
||||
|
|
Loading…
Reference in a new issue