Easy P2P file transfer powered by WebRTC - inspired by Apple AirDrop 一个开源的 Web 应用,允许用户在局域网里通过 WebRTC 分享文件。如果不在同一局域网,可以进入同一个页面进行分享。
Go to file
2015-11-18 10:33:03 +01:00
app add clipboard button 2015-11-18 10:33:03 +01:00
config Add Google Analytics using inline-content plugin 2015-07-19 14:21:08 +02:00
public add clipboard button 2015-11-18 10:33:03 +01:00
tests Update ember-cli 2015-11-12 20:56:19 +01:00
vendor Minor fixes 2015-09-29 10:04:08 +02:00
.bowerrc Seems like it's more or less working 2015-01-04 18:22:23 +01:00
.buildpacks Add multi buildpack file again... 2015-01-06 13:11:58 +01:00
.editorconfig More depractation cleanups 2015-08-23 23:14:27 +02:00
.ember-cli Seems like it's more or less working 2015-01-04 18:22:23 +01:00
.env.sample Track size of transferred files using GA 2014-04-14 21:11:39 +02:00
.gitignore Update Ember CLI to 0.1.7 2015-01-14 18:01:40 +01:00
.gitkeep Seems like it's more or less working 2015-01-04 18:22:23 +01:00
.jshintrc Update ember.js and ember-cli 2015-07-18 23:38:56 +02:00
.travis.yml Update ember.js and ember-cli 2015-07-18 23:38:56 +02:00
.watchmanconfig Update ember-cli 2015-11-12 20:56:19 +01:00
bower.json Update ember 2015-11-12 21:08:31 +01:00
ember-cli-build.js Add Google Analytics using inline-content plugin 2015-07-19 14:21:08 +02:00
firebase_rules.json Validate user data in Firebase to prevent incomplete records 2014-03-29 21:35:22 +01:00
index.js Update ember to 2.1.0 beta 2015-09-29 17:43:29 +02:00
LICENSE Add license 2014-03-19 18:23:30 +01:00
newrelic.js Add NewRelic 2014-03-17 18:05:11 +01:00
package.json Update ember cli 2015-11-15 20:42:53 +01:00
Procfile Seems like it's more or less working 2015-01-04 18:22:23 +01:00
Procfile.dev Add Procfile for development that starts both ember and node servers 2015-07-27 21:32:43 +02:00
README.md Fix logo link in README.md 2015-04-19 19:33:42 +08:00
sharedrop.crx Seems like it's more or less working 2015-01-04 18:22:23 +01:00
testem.json Update ember.js and ember-cli 2015-07-18 23:38:56 +02:00

ShareDrop

ShareDrop is HTML5 clone of Apple AirDrop service. It allows you to transfer files directly between devices, without having to upload them to any server first. It uses WebRTC for secure peer-to-peer file transfer and Firebase for presence management and WebRTC signaling.

ShareDrop allows you to send files to other devices in the same local network (i.e. devices with the same public IP address) without any configuration - simply open https://www.sharedrop.io on all devices and they will see each other. It also allows you to send files between networks - just click + button in the top right corner of the page to create a room with unique URL and share this URL with other people you want to send a file to. Once they open this page in a browser on their devices, you'll see each other's avatars.

The main difference between ShareDrop and AirDrop is that ShareDrop requires Internet connection to discover other devices, while AirDrop doesn't need one - it creates ad-hoc wireless network between them. On the other hand, ShareDrop allows you to share files between mobile (Android) and desktop devices and between networks as well.

Supported browsers

  • Chrome (desktop and Android) 33+
  • Opera (desktop and Android) 20+
  • Firefox (desktop and Android) 28+ (though we suggest using Chrome or Opera for transferring larger files)

How to set it up for local development

  1. Setup Firebase:
    1. Sign up for a Firebase account and create a database.
    2. Go to "Security Rules" tab, click "Load Rules" button and select firebase_rules.json file.
    3. Take note of your database URL and its secret, which can be found in "Secrets" tab.
  2. Run npm install -g ember-cli to install Ember CLI.
  3. Run npm install -g bower to install Bower.
  4. Run ember install to install app dependencies.
  5. Run cp .env{.sample,} to create .env file. This file will be used by Foreman to set environemnt variables when running the app locally.
    • SECRET key is used to encrypt cookies and generate room name based on public IP address for / route. It can be any random string - you can generate one using e.g. date | md5sum
    • NEW_RELIC_* keys are only necessary in production
  6. Run ember build --watch to build Ember app and automatically rebuild it on any changes.
  7. Run foreman start to start the server (this will load all env variables in .env file and run node index.js as specified in Procfile). You can install foreman with gem install foreman.

Deployment

Heroku

When deploying to Heroku, use multi buildpack.

For new apps:

heroku create myapp --buildpack https://github.com/heroku/heroku-buildpack-multi.git

For existing apps:

heroku config:set BUILDPACK_URL=https://github.com/heroku/heroku-buildpack-multi.git

Then run

heroku config:set NPM_CONFIG_PRODUCTION=false

to make Node.js buildpack install development dependencies necessary to build Ember CLI app as well as the production ones.

It uses the default Heroku Node.js buildpack to install Node.js, npm and Node.js packages and then uses Ember CLI buildpack to install Bower packages and build Ember CLI app.