commit abf96c02282c5171793f5487880918f4719e8f15
parent 10196cdf3351dba0f7fa0598cf7694613389543b
Author: RobinLinus <robinlinus@users.noreply.github.com>
Date: Fri, 21 Sep 2018 16:36:59 +0200
Test
Diffstat:
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/README.md b/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:
-* 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.