ya-webadb/libraries/fetch-scrcpy-server/examples/vite/index.js

6 lines
159 B
JavaScript

import { BIN, VERSION } from "@yume-chan/fetch-scrcpy-server";
console.log(VERSION);
fetch(BIN)
.then((res) => res.arrayBuffer())
.then(console.log);