GitXplorerGitXplorer
n

piping-server-pkg

public
23 stars
2 forks
2 issues

Commits

List of commits on branch master.
Verified
472455782ba9430197c19883463908adb9244bce

build(deps): bump actions/setup-node from 4.0.1 to 4.0.2 (#148)

ddependabot[bot] committed a year ago
Unverified
307c39c2ae63b739188182273ed27a0ab4cebeed

chore: use actions/*-artifact@v4

nnwtgck committed a year ago
Verified
a06953a940aad25b429a669cccdc325f277d908c

build(deps): bump actions/setup-node from 4.0.0 to 4.0.1 (#147)

ddependabot[bot] committed a year ago
Verified
751923bbd0d301fecc557114110d80067d26fa2c

build(deps): bump actions/setup-node from 3.8.1 to 4.0.0 (#144)

ddependabot[bot] committed a year ago
Verified
7d2ef532172a0ade9b1ff922f19f07de317da89d

build(deps): bump docker/setup-qemu-action from 2 to 3 (#143)

ddependabot[bot] committed a year ago
Verified
2627c126460d606d5bf73f1ab8913dd9d2e149cd

build(deps): bump actions/checkout from 3 to 4 (#142)

ddependabot[bot] committed a year ago

README

The README file for this repository.

piping-server-pkg

CI

Piping Server into an portable executable by vercel/pkg for Linux, macOS, Windows and Alpine

Run on Linux (x64, amd64)

Run the command below, and a server runs on http://localhost:8888.

curl -L https://github.com/nwtgck/piping-server-pkg/releases/download/v1.12.9-1/piping-server-pkg-linuxstatic-x64.tar.gz | tar xzvf -
./piping-server-pkg-linuxstatic-x64/piping-server --http-port=8888

Run on Linux (ARM64)

Run the command below, and a server runs on http://localhost:8888.

curl -L https://github.com/nwtgck/piping-server-pkg/releases/download/v1.12.9-1/piping-server-pkg-linuxstatic-arm64.tar.gz | tar xzvf -
./piping-server-pkg-linuxstatic-arm64/piping-server --http-port=8888

Run on Linux (ARMv7 32bit)

Run the command below, and a server runs on http://localhost:8888.

curl -L https://github.com/nwtgck/piping-server-pkg/releases/download/v1.12.9-1/piping-server-pkg-linuxstatic-armv7.tar.gz | tar xzvf -
./piping-server-pkg-linuxstatic-armv7/piping-server --http-port=8888

Run on macOS (Intel)

Run the command below, and a server runs on http://localhost:8888.

curl -L https://github.com/nwtgck/piping-server-pkg/releases/download/v1.12.9-1/piping-server-pkg-mac-x64.tar.gz | tar xzvf -
xattr -d com.apple.quarantine ./piping-server-pkg-mac-x64/piping-server
./piping-server-pkg-mac-x64/piping-server --http-port=8888

Run on macOS (Apple Silicon)

Run the command below, and a server runs on http://localhost:8888.

curl -L https://github.com/nwtgck/piping-server-pkg/releases/download/v1.12.9-1/piping-server-pkg-mac-arm64.tar.gz | tar xzvf -
./piping-server-pkg-mac-arm64/piping-server --http-port=8888

Brew

Run the command below, and a server runs on http://localhost:8888.

brew install nwtgck/piping-server-pkg/piping-server
piping-server --http-port=8888

You can brew-install on both macOS and Linux. Repository: https://github.com/nwtgck/homebrew-piping-server-pkg

Run on Windows

Download zip from https://github.com/nwtgck/piping-server-pkg/releases/download/v1.12.9-1/piping-server-pkg-win-x64.zip, extract it and run the command below, and a server runs on http://localhost:8888.

.\piping-server.exe --http-port=8888

Run on Alpine

Run the command below, and a server runs on http://localhost:8888.

curl -L https://github.com/nwtgck/piping-server-pkg/releases/download/v1.12.9-1/piping-server-pkg-alpine-x64.tar.gz | tar xzvf -
./piping-server-pkg-alpine-x64/piping-server --http-port=8888

Other built binaries found in https://github.com/nwtgck/piping-server-pkg/releases

Docker

Run the command below, and a server runs on http://localhost:8888.

docker run -p 8888:8888 nwtgck/piping-server-pkg --http-port=8888

https://github.com/nwtgck/docker-piping-server-pkg

Automation

These releases are automatically published by GitHub Actions.

Generate executables in local

cd <this repo>
npm ci
npm run build-x64
cd <this repo>
npm ci
npm run build-arm