0.0.23 • Published 1 month ago

@yume-chan/fetch-scrcpy-server v0.0.23

Weekly downloads
-
License
MIT
Repository
github
Last release
1 month ago

@yume-chan/fetch-scrcpy-server

A script to download Scrcpy server binary from official GitHub releases.

Usage

fetch-scrcpy-server <version>

For example:

fetch-scrcpy-server 2.1

The server binary is written to server.bin and the version is written to version.js in this package's root.

Autorun

Add to postinstall script in your package.json:

{
    "scripts": {
        "postinstall": "fetch-scrcpy-server 2.1"
    }
}

Consume server.bin

Webpack/Vite

It works out of the box for Webpack 5 and Vite.

BIN is a URL you can use in fetch to download server.bin.

import { BIN, VERSION } from "@yume-chan/fetch-scrcpy-server";

console.log(VERSION); // 2.1
fetch(BIN)
    .then((res) => res.arrayBuffer())
    .then(console.log); // <ArrayBuffer ...>

Node.js

This package is in ES Module format, so it needs to be imported in another ES Module, or using createRequire.

BIN is a URL to a local file, you can use fs.readFile to read it.

import { BIN, VERSION } from "@yume-chan/fetch-scrcpy-server";
import fs from "fs/promises";

console.log(VERSION); // 2.1
fs.readFile(BIN).then(console.log); // <Buffer ...>
0.0.23

1 month ago

0.0.22

5 months ago

0.0.21

8 months ago