目的:使用手機(jī)搭建node-red服務(wù)器,通過(guò)手機(jī)瀏覽器訪問(wèn)本地服務(wù)
1.下載 termux apk
https://termux.com/
2. 修改鏡像源
運(yùn)行 termux 執(zhí)行 败潦,分別以下4個(gè)命令
sed -i 's@^\(deb.*stable main\)$@#\1\ndeb https://mirrors.tuna.tsinghua.edu.cn/termux/termux-packages-24 stable main@' $PREFIX/etc/apt/sources.list
sed -i 's@^\(deb.*games stable\)$@#\1\ndeb https://mirrors.tuna.tsinghua.edu.cn/termux/game-packages-24 games stable@' $PREFIX/etc/apt/sources.list.d/game.list
sed -i 's@^\(deb.*science stable\)$@#\1\ndeb https://mirrors.tuna.tsinghua.edu.cn/termux/science-packages-24 science stable@' $PREFIX/etc/apt/sources.list.d/science.list
apt update && apt upgrade
3. 安裝 node
apt install nodejs
4. 使用 nrm 切換 npm 鏡像源
npm i nrm -g
nrm use taobao
5. 安裝 node-red
npm i node-red -g
6. 啟動(dòng) node-red
node-red
7. 使用手機(jī)瀏覽器 訪問(wèn) http://127.0.0.1:1880
服務(wù)啟動(dòng)完成