Caution
This project is unmaintained!
Previously it was hosted under blymp [dot] io - I do not own that domain anymore! And it seems like some scam website catched it, so be careful. I recommend switching to something like https://web.localsend.org/ instead
file-transfer is a webapp that allows you to easily transfer files between devices with high speeds.
It uses modern technologies like WebRTC, Blobs and WebSockets to allow files to be transferred as fast as possible.
- WebRTC file transfer
- PWA
- No registration
- Privacy-oriented
- Open-source
- Automatic lossless compression using zlib
- Developed in Typescript
# Clone the repository
git clone https://github.com/vantezzen/blymp-io
# Go inside the directory
cd blymp-io
# Install dependencies
yarn (or npm install)
# Start development server
yarn dev (or npm run dev)
# This will automatically open your browser
# Build for production
yarn build (or npm run build)
# Start production server
yarn start (or npm start)Alternatively, you can start blymp.io using Docker using the Dockerfile contained in this repository.
All the source code are inside the src directory.
Inside src, there is client and server directory. All the frontend code (react, css, js and any other assets) are in the client directory, backend Node.js/Express code are in the server directory.
Additional static assets are stored inside the public directory. Files in this folder will be copied over to the dist folder using webpack.
webpack builds production files into the dist directory.