2020-02-19 07:07:01 +07:00
|
|
|
# code-server
|
2019-01-08 07:46:19 +07:00
|
|
|
|
2020-05-18 03:53:08 +07:00
|
|
|
Run [VS Code](https://github.com/Microsoft/vscode) on any machine anywhere and access it in the browser.
|
2019-03-06 08:45:21 +07:00
|
|
|
|
2020-05-18 03:53:08 +07:00
|
|
|
- **Code everywhere:** Code on your Chromebook, tablet, and laptop with a
|
2020-05-12 12:46:38 +07:00
|
|
|
consistent dev environment. Develop on a Linux machine and pick up from any
|
|
|
|
device with a web browser.
|
|
|
|
- **Server-powered:** Take advantage of large cloud servers to speed up tests, compilations, downloads, and more.
|
|
|
|
Preserve battery life when you're on the go since all intensive tasks runs on your server.
|
|
|
|
Make use of a spare computer you have lying around and turn it into a full development environment.
|
|
|
|
|
|
|
|
![Example gif](./doc/assets/code-server.gif)
|
|
|
|
|
2020-05-18 07:47:33 +07:00
|
|
|
## Getting Started
|
2020-05-12 12:46:38 +07:00
|
|
|
|
2020-05-18 03:53:08 +07:00
|
|
|
For a full setup and walkthrough, please see [./doc/guide.md](./doc/guide.md).
|
2020-05-12 12:46:38 +07:00
|
|
|
|
|
|
|
### Debian, Ubuntu
|
2019-09-27 21:39:29 +07:00
|
|
|
|
2019-03-07 09:59:43 +07:00
|
|
|
```bash
|
2020-05-18 07:32:04 +07:00
|
|
|
curl -sSOL https://github.com/cdr/code-server/releases/download/v3.3.0/code-server_3.3.0_amd64.deb
|
2020-05-12 12:46:38 +07:00
|
|
|
sudo dpkg -i code-server_3.3.0_amd64.deb
|
2020-05-13 15:17:34 +07:00
|
|
|
systemctl --user enable --now code-server
|
2020-05-12 12:46:38 +07:00
|
|
|
# Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml
|
2019-03-07 09:59:43 +07:00
|
|
|
```
|
|
|
|
|
2020-05-12 12:46:38 +07:00
|
|
|
### Fedora, Red Hat, SUSE
|
2019-03-05 01:31:27 +07:00
|
|
|
|
2020-05-12 12:46:38 +07:00
|
|
|
```bash
|
2020-05-18 07:32:04 +07:00
|
|
|
curl -sSOL https://github.com/cdr/code-server/releases/download/v3.3.0/code-server-3.3.0-amd64.rpm
|
2020-05-13 10:11:31 +07:00
|
|
|
sudo yum install -y code-server-3.3.0-amd64.rpm
|
2020-05-13 15:17:34 +07:00
|
|
|
systemctl --user enable --now code-server
|
2020-05-12 12:46:38 +07:00
|
|
|
# Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml
|
|
|
|
```
|
2020-03-03 04:13:39 +07:00
|
|
|
|
2020-05-12 12:46:38 +07:00
|
|
|
### npm
|
2019-09-19 01:21:38 +07:00
|
|
|
|
2020-05-14 14:17:17 +07:00
|
|
|
We recommend installing from `npm` if we don't have a precompiled release for your machine's
|
|
|
|
platform or architecture.
|
|
|
|
|
2020-05-18 03:53:08 +07:00
|
|
|
**note:** Installing via `npm` builds native modules on install and so requires C dependencies.
|
2020-05-13 16:06:11 +07:00
|
|
|
See [./doc/npm.md](./doc/npm.md) for installing these dependencies.
|
2020-05-13 10:11:31 +07:00
|
|
|
|
2020-05-18 03:53:08 +07:00
|
|
|
You will need at least node v12 installed. See [#1633](https://github.com/cdr/code-server/issues/1633).
|
2020-05-15 08:37:58 +07:00
|
|
|
|
2020-05-12 12:46:38 +07:00
|
|
|
```bash
|
|
|
|
npm install -g code-server
|
|
|
|
code-server
|
2020-05-13 06:33:34 +07:00
|
|
|
# Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml
|
2020-05-12 12:46:38 +07:00
|
|
|
```
|
2019-09-19 01:21:38 +07:00
|
|
|
|
2020-05-12 12:46:38 +07:00
|
|
|
### macOS
|
2019-09-19 01:21:38 +07:00
|
|
|
|
2020-05-12 12:46:38 +07:00
|
|
|
```bash
|
|
|
|
brew install code-server
|
2020-05-15 08:57:10 +07:00
|
|
|
brew services start code-server
|
2020-05-12 12:46:38 +07:00
|
|
|
# Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml
|
|
|
|
```
|
2019-09-27 21:39:29 +07:00
|
|
|
|
2020-05-12 12:46:38 +07:00
|
|
|
### Docker
|
|
|
|
|
|
|
|
```bash
|
2020-05-15 09:01:45 +07:00
|
|
|
# This will start a code-server container and expose it at http://127.0.0.1:8080.
|
|
|
|
# It will also mount your current directory into the container as `/home/coder/project`
|
|
|
|
# and forward your UID/GID so that all file system operations occur as your user outside
|
|
|
|
# the container.
|
2020-05-15 08:57:10 +07:00
|
|
|
docker run -it -p 127.0.0.1:8080:8080 \
|
|
|
|
-v "$PWD:/home/coder/project" \
|
|
|
|
-u "$(id -u):$(id -g)" \
|
|
|
|
codercom/code-server:latest
|
2020-05-12 12:46:38 +07:00
|
|
|
```
|
|
|
|
|
2020-05-18 07:25:33 +07:00
|
|
|
### Static Releases
|
2020-05-12 12:46:38 +07:00
|
|
|
|
2020-05-16 21:01:26 +07:00
|
|
|
We publish self contained `.tar.gz` archives for every release on [github](https://github.com/cdr/code-server/releases).
|
2020-05-13 13:35:11 +07:00
|
|
|
They bundle the node binary and compiled native modules.
|
2020-05-12 12:46:38 +07:00
|
|
|
|
2020-05-18 03:53:08 +07:00
|
|
|
1. Download the latest release archive for your system from [github](https://github.com/cdr/code-server/releases).
|
|
|
|
2. Unpack the release.
|
|
|
|
3. You can run code-server by executing `./bin/code-server`.
|
2019-09-27 21:39:29 +07:00
|
|
|
|
2020-05-18 03:53:08 +07:00
|
|
|
Add the code-server `bin` directory to your `$PATH` to easily execute `code-server` without the full path every time.
|
2020-05-12 12:46:38 +07:00
|
|
|
|
2020-05-18 03:59:09 +07:00
|
|
|
Here is an example script for installing and using a static `code-server` release on Linux:
|
2020-05-12 12:46:38 +07:00
|
|
|
|
|
|
|
```bash
|
2020-05-18 07:32:04 +07:00
|
|
|
curl -sSL https://github.com/cdr/code-server/releases/download/v3.3.0/code-server-3.3.0-linux-amd64.tar.gz | sudo tar -C /usr/local -xz
|
2020-05-18 07:36:10 +07:00
|
|
|
sudo mv /usr/local/code-server-3.3.0-linux-amd64 /usr/local/code-server-3.3.0
|
|
|
|
PATH="/usr/local/code-server-3.3.0/bin:$PATH"
|
2020-05-12 12:46:38 +07:00
|
|
|
code-server
|
2020-05-18 04:57:59 +07:00
|
|
|
# Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml
|
2020-05-12 12:46:38 +07:00
|
|
|
```
|
2019-01-08 07:46:19 +07:00
|
|
|
|
2020-02-19 07:07:01 +07:00
|
|
|
## FAQ
|
2019-10-23 23:49:05 +07:00
|
|
|
|
2020-02-19 07:07:01 +07:00
|
|
|
See [./doc/FAQ.md](./doc/FAQ.md).
|
2019-01-08 07:46:19 +07:00
|
|
|
|
2020-03-20 04:53:31 +07:00
|
|
|
## Contributing
|
|
|
|
|
|
|
|
See [./doc/CONTRIBUTING.md](./doc/CONTRIBUTING.md).
|
|
|
|
|
2019-03-05 01:31:27 +07:00
|
|
|
## Enterprise
|
2019-09-27 21:39:29 +07:00
|
|
|
|
2020-05-18 04:57:59 +07:00
|
|
|
Visit [our website](https://coder.com) for more information about our
|
2020-02-19 07:07:01 +07:00
|
|
|
enterprise offerings.
|