RobinLinus 6 年之前
父節點
當前提交
abf96c0228
共有 1 個文件被更改,包括 6 次插入6 次删除
  1. 6 6
      README.md

+ 6 - 6
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/)
 * [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.