mirror of
https://github.com/coder/code-server.git
synced 2026-09-02 08:30:17 +02:00
With the update to node.js v24 in vscode and package.json some files have not been updated and still referenced version 22.x.
968 B
968 B
Running code-server using UserLAnd
- Install UserLAnd from Google Play
- Install an Ubuntu VM
- Start app
- Install Node.js and
curlusingsudo apt install nodejs npm curl -y - Install
nvm:
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.0/install.sh | bash
- Exit the terminal using
exitand then reopen the terminal - Install and use Node.js 24:
nvm install 24
nvm use 24
- Install code-server globally on device with:
npm install --global code-server - Run code-server with
code-server - Access on localhost:8080 in your browser
Running code-server using Nix-on-Droid
- Install Nix-on-Droid from F-Droid
- Start app
- Spawn a shell with code-server by running
nix-shell -p code-server - Run code-server with
code-server - Access on localhost:8080 in your browser