2026-04-12 16:34:18 +01:00
2026-04-12 16:34:18 +01:00
2026-04-01 18:35:17 +00:00
2026-04-04 11:31:19 +01:00
2026-04-04 11:31:19 +01:00

ReMote is a WASM Remote Monitor Application

Install Linux

sudo apt update
sudo apt install -y ninja-build python3 build-essential

cd ~
git clone https://github.com/emscripten-core/emsdk.git
cd emsdk
export EMSDK_KEEP_DOWNLOADS=1 
curl -L   https://storage.googleapis.com/webassembly/emscripten-releases-builds/linux/2ce4170cef5ce46f337f9fd907b614a8db772c7d/wasm-binaries.tar.xz   -o downloads/2ce4170cef5ce46f337f9fd907b614a8db772c7d-wasm-binaries.tar.xz
./emsdk install 3.1.50
./emsdk activate 3.1.50
source ./emsdk_env.sh

echo "$EMSDK"
em++ --version
ninja --version

/home/user/Qt/6.7.3/wasm_singlethread/bin/qt-cmake     -S . -B build-wasm -G Ninja
cmake --build build-wasm

cd build-wasm
python3 -m http.server 8000

Install MacOS

git clone https://github.com/emscripten-core/emsdk.git
cd emsdk
./emsdk install latest
./emsdk activate latest
source "/Users/tech/code/emsdk/emsdk_env.sh"

(
note if latest does not work use 4.0.7 explicitly.
"your em is built with 5.1........"

./emsdk install 4.0.7
./emsdk activate 4.0.7
source "/Users/tech/code/emsdk/emsdk_env.sh"
)


brew install cmake ninja 


cat code/esa-remote/build-mac.sh 
/Users/tech/Qt/6.11.0/wasm_singlethread/bin/qt-cmake   -S . -B build-wasm -G Ninja
cmake --build build-wasm

cd build-wasm
python3 -m http.server 8000
Description
websocket based remote control for ESA products
Readme 471 KiB
Languages
C++ 98.5%
CMake 1.3%
Shell 0.2%