Skip to content
/ gopeed Public
forked from GopeedLab/gopeed

High speed downloader that supports all platforms.

License

Notifications You must be signed in to change notification settings

trim21/gopeed

 
 

Repository files navigation

Test Status Codecov Release Discord

English | 中文

Introduction

Gopeed is a high-speed downloader developed by Golang+Flutter, which supports (HTTP, BitTorrent, Magnet) protocol downloads and supports all platforms.

Installation

Supported platforms

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

To Release

Command tool

use go install:

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

Showcase

Development

This project is divided into two parts, the front end uses flutter, the back end uses Golang, and the two sides communicate through the http protocol. On the unix system, unix socket is used, and on the windows system, tcp protocol is used.

The front code is located in the ui/flutter directory.

Environment

  1. Golang 1.19+
  2. Flutter 3.0+

Clone

git clone [email protected]:monkeyWie/gopeed.git

Build

Desktop

First, you need to configure the environment according to the flutter desktop official website document, and then you need to prepare the cgo environment, which can be searched for yourself.

command:

  • 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

Mobile

Same as before, you also need to prepare the cgo environment, and then install gomobile:

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

command:

  • 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 platform communicates directly with the backend http server, no additional environment is required.

command:

```bash
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

License

GPLv3

About

High speed downloader that supports all platforms.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 42.7%
  • Dart 31.6%
  • C++ 11.2%
  • CMake 9.2%
  • Ruby 1.5%
  • C 1.4%
  • Other 2.4%