Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alxarno/dtransfer
πThe program for transferring directories through the local network
https://github.com/alxarno/dtransfer
golang golang-desktop golang-ui tcp transferring-directories udp
Last synced: 27 days ago
JSON representation
πThe program for transferring directories through the local network
- Host: GitHub
- URL: https://github.com/alxarno/dtransfer
- Owner: alxarno
- Created: 2018-05-25T18:15:41.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-04-15T13:58:54.000Z (over 5 years ago)
- Last Synced: 2024-11-26T11:16:56.086Z (27 days ago)
- Topics: golang, golang-desktop, golang-ui, tcp, transferring-directories, udp
- Language: Go
- Homepage:
- Size: 6.51 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## DTransfer
##### Application for transfer os directories through network connections
---
#### Powered by
##### 1. [Webview](https://github.com/zserge/webview)
##### 2. [Go-bindata](https://github.com/jteeuwen/go-bindata)
##### 3. [Gorilla Websocket](https://github.com/gorilla/websocket)![example](https://i.imgur.com/W9TZfm3.png)
---
#### Setup```
$ go get github.com/AlexeyArno/DTransfer
$ cd GOPATH/src/github.com/AlexeyArno/DTransfer
$ go get -d ./...
```
#### Build
```
# Linux
$ go build -o DTransfer && ./DTransfer# MacOS uses app bundles for GUI apps
$ mkdir -p DTransfer.app/Contents/MacOS
$ go build -o DTransfer.app/Contents/MacOS/DTransfer
$ open DTransfer.app # Or click on the app in Finder# Windows requires special linker flags for GUI apps.
# It's also recommended to use TDM-GCC-64 compiler for CGo.
# http://tdm-gcc.tdragon.net/download
$ go build -ldflags="-H windowsgui" -o DTransfer.exe
```