Skip to content

Commit

Permalink
Merge branch 'release/1.10.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
nwtgck committed Jan 20, 2022
2 parents 51c1883 + 9776ae4 commit 8dbc7c4
Show file tree
Hide file tree
Showing 4 changed files with 64 additions and 55 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)

## [Unreleased]

## [1.10.1] - 2022-01-20
### Changed
* Update dependencies

## [1.10.0] - 2022-01-16
### Changed
* Log Piping Server version
Expand Down Expand Up @@ -390,7 +394,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
* Docker automated build on Docker Hub
* Support HTTPS

[Unreleased]: https://github.com/nwtgck/piping-server/compare/v1.10.0...HEAD
[Unreleased]: https://github.com/nwtgck/piping-server/compare/v1.10.1...HEAD
[1.10.1]: https://github.com/nwtgck/piping-server/compare/v1.10.0...v1.10.1
[1.10.0]: https://github.com/nwtgck/piping-server/compare/v1.9.1...v1.10.0
[1.9.1]: https://github.com/nwtgck/piping-server/compare/v1.9.0...v1.9.1
[1.9.0]: https://github.com/nwtgck/piping-server/compare/v1.8.1...v1.9.0
Expand Down
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,16 @@ Run a server in background and it automatically always restarts.
docker run -p 8080:8080 -d --restart=always nwtgck/piping-server
```

## Self-host using portable binaries

Run a Piping Server on <http://localhost:8080> as follows on Linux.

```bash
curl -L https://github.com/nwtgck/piping-server-pkg/releases/download/v1.10.0/piping-server-pkg-linuxstatic-x64.tar.gz | tar xzvf -
./piping-server-pkg-linuxstatic-x64/piping-server --http-port=8080
```
The binaries are for multi-platform including Linux on x64, Linux on ARM64, Linux on ARMv7, Intel macOS, Apple Silicon macOS and Windows on x64. See <https://github.com/nwtgck/piping-server-pkg> to run on the other platform.

## Self-host on free services

Here are easier ways to own your Piping Server.
Expand Down
98 changes: 46 additions & 52 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "piping-server",
"version": "1.10.0",
"version": "1.10.1",
"description": "Streaming Data Transfer Server over HTTP/HTTPS",
"bin": {
"piping-server": "dist/src/index.js"
Expand Down Expand Up @@ -48,7 +48,7 @@
"typescript": "^4.0.2"
},
"dependencies": {
"log4js": "^6.2.1",
"log4js": "^6.4.0",
"multiparty": "^4.2.1",
"yargs": "^17.3.1"
}
Expand Down

0 comments on commit 8dbc7c4

Please sign in to comment.