Skip to content

Latest commit

 

History

History
135 lines (89 loc) · 3.54 KB

README_zh-CN.md

File metadata and controls

135 lines (89 loc) · 3.54 KB

Test Status Codecov Release Discord

English | 中文

介绍

Gopeed 是一款由Golang+Flutter开发的高速下载器,支持(HTTP、BitTorrent、Magnet)协议下载,并且支持全平台使用。

下载

已支持平台

  • windows
  • macos
  • linux
  • android
  • ios
  • web
  • docker

点击前往

注:macos 版本运行如果提示损坏,请在终端执行 xattr -d com.apple.quarantine /Applications/Gopeed.app 命令

命令行工具

使用go install安装:

go install github.com/monkeyWie/gopeed/cmd/gopeed

Docker

docker run liwei2633/gopeed:latest -v /path/to/download:/download -p 9999:9999

当 docker 容器运行时,可以通过 http://localhost:9999 访问 web 页面。

提示:在设置页面把下载路径修改为 /download 以便在宿主机访问下载完的文件。

界面展示

开发

本项目分为前端和后端两个部分,前端使用flutter,后端使用Golang,两边通过http协议进行通讯,在 unix 系统下,使用的是unix socket,在 windows 系统下,使用的是tcp协议。

前端代码位于ui/flutter目录下。

环境要求

  1. Golang 1.19+
  2. Flutter 3.0+

克隆项目

git clone git@github.com:monkeyWie/gopeed.git

编译

桌面端

首先需要按照flutter desktop 官网文档进行环境配置,然后需要准备好cgo环境,具体可以自行搜索。

构建命令:

  • windows
go build -tags nosqlite -ldflags="-w -s" -buildmode=c-shared -o ui/flutter/windows/libgopeed.dll github.com/monkeyWie/gopeed/bind/desktop
cd ui/flutter
flutter build windows
  • macos
go build -tags nosqlite -ldflags="-w -s" -buildmode=c-shared -o ui/flutter/macos/Frameworks/libgopeed.dylib github.com/monkeyWie/gopeed/bind/desktop
cd ui/flutter
flutter build macos
  • linux
go build -tags nosqlite -ldflags="-w -s" -buildmode=c-shared -o ui/flutter/linux/bundle/lib/libgopeed.so github.com/monkeyWie/gopeed/bind/desktop
cd ui/flutter
flutter build linux

移动端

同样的也是需要准备好cgo环境,接着安装gomobile

go install golang.org/x/mobile/cmd/gomobile@latest
gomobile init

构建命令:

  • android
gomobile bind -tags nosqlite -ldflags="-w -s" -o ui/flutter/android/app/libs/libgopeed.aar -target=android -androidapi 19 -javapkg=com.gopeed github.com/monkeyWie/gopeed/bind/mobile
cd ui/flutter
flutter build apk

Web 端(推荐本地调试使用)

Web 端直接与后端 http 服务通讯,不需要额外准备环境。

构建命令:

cd ui/flutter
flutter build web
cd ../../
cp -r ui/flutter/build/web cmd/web/dist
go build -tags nosqlite,web -ldflags="-s -w" -o bin/ github.com/monkeyWie/gopeed/cmd/web

开源许可

基于 GPLv3 协议开源。