https://github.com/aptpod/iscp-go
iSCP client library for Go. iSCP (intdash Stream Control Protocol) is an L7 network protocol authored by aptpod, Inc.
https://github.com/aptpod/iscp-go
Last synced: 11 months ago
JSON representation
iSCP client library for Go. iSCP (intdash Stream Control Protocol) is an L7 network protocol authored by aptpod, Inc.
- Host: GitHub
- URL: https://github.com/aptpod/iscp-go
- Owner: aptpod
- License: apache-2.0
- Created: 2022-09-20T07:17:44.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-02-26T03:28:14.000Z (over 1 year ago)
- Last Synced: 2025-02-26T05:55:58.411Z (over 1 year ago)
- Language: Go
- Homepage:
- Size: 478 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# iSCP-go
iSCPv2 Client Library
## Installation
- Execute go get command
```sh
go get github.com/aptpod/iscp-go
```
## Usage
- See [Example](./examples)
## WebSocket
The implementation of WebSocket is as follows.
You can switch implementations using build tags.
- [coder/websocket](https://github.com/coder/websocket) (Default)
- [gorilla/websocket](https://github.com/gorilla/websocket) (`gorilla`)
- [nhooyr/websocket](https://github.com/nhooyr/websocket) (`nhooyr`)
## Development
1. Fork this repository
1. Clone this repository
1. Change the origin url of the cloned repository as below.
```sh
git remote set-url origin
```
## References
- [GoDoc](https://pkg.go.dev/github.com/aptpod/iscp-go)
- [GitHub](https://github.com/aptpod/iscp-go/)