2020-02-19 00:07:01 +00:00
|
|
|
# Contributing
|
|
|
|
|
2020-04-30 11:52:54 +00:00
|
|
|
- [Detailed CI and build process docs](../ci)
|
|
|
|
|
2020-05-13 03:11:31 +00:00
|
|
|
## Requirements
|
|
|
|
|
|
|
|
Please refer to [VS Code's prerequisites](https://github.com/Microsoft/vscode/wiki/How-to-Contribute#prerequisites).
|
|
|
|
|
|
|
|
Differences:
|
2020-02-19 00:07:01 +00:00
|
|
|
|
2020-05-17 20:53:08 +00:00
|
|
|
- We require a minimum of node v12 but later versions should work.
|
|
|
|
- We use [fnpm](https://github.com/goreleaser/nfpm) to build `.deb` and `.rpm` packages.
|
|
|
|
- The [CI container](../ci/container/Dockerfile) is a useful reference for all our dependencies.
|
2020-05-13 03:11:31 +00:00
|
|
|
|
|
|
|
## Development Workflow
|
2020-02-19 00:07:01 +00:00
|
|
|
|
|
|
|
```shell
|
|
|
|
yarn
|
|
|
|
yarn vscode
|
2020-05-17 20:53:08 +00:00
|
|
|
yarn watch
|
|
|
|
# Visit http://localhost:8080 once the build completed.
|
2020-02-19 00:07:01 +00:00
|
|
|
```
|
|
|
|
|
2020-04-14 22:22:52 +00:00
|
|
|
To develop inside of an isolated docker container:
|
|
|
|
|
|
|
|
```shell
|
2020-04-30 11:52:54 +00:00
|
|
|
./ci/dev/container/exec.sh
|
2020-04-14 22:22:52 +00:00
|
|
|
|
|
|
|
root@12345:/code-server# yarn
|
|
|
|
root@12345:/code-server# yarn vscode
|
|
|
|
root@12345:/code-server# yarn watch
|
|
|
|
```
|
|
|
|
|
2020-02-19 00:07:01 +00:00
|
|
|
Any changes made to the source will be live reloaded.
|
|
|
|
|
|
|
|
If changes are made to the patch and you've built previously you must manually
|
|
|
|
reset VS Code then run `yarn vscode:patch`.
|
|
|
|
|
|
|
|
## Build
|
|
|
|
|
|
|
|
```shell
|
|
|
|
yarn
|
2020-02-26 20:48:08 +00:00
|
|
|
yarn vscode
|
2020-02-19 00:07:01 +00:00
|
|
|
yarn build
|
2020-04-30 11:52:54 +00:00
|
|
|
yarn build:vscode
|
|
|
|
yarn release
|
2020-05-08 20:31:42 +00:00
|
|
|
cd release
|
|
|
|
yarn --production
|
2020-05-17 20:53:08 +00:00
|
|
|
# Runs the built JavaScript with Node.
|
|
|
|
node .
|
2020-02-19 00:07:01 +00:00
|
|
|
```
|
2020-05-13 03:11:31 +00:00
|
|
|
|
|
|
|
Now you can make it static and build packages with:
|
|
|
|
|
|
|
|
```
|
|
|
|
yarn release:static
|
|
|
|
yarn test:static-release
|
|
|
|
yarn package
|
2020-05-17 20:53:08 +00:00
|
|
|
# The static release is in ./release-static
|
2020-05-17 20:59:09 +00:00
|
|
|
# .deb, .rpm and the static archive are in ./release-packages
|
2020-05-13 03:11:31 +00:00
|
|
|
```
|
|
|
|
|
2020-05-17 20:53:08 +00:00
|
|
|
## Structure
|
|
|
|
|
|
|
|
The `code-server` script serves an HTTP API to login and start a remote VS Code process.
|
|
|
|
|
|
|
|
The CLI code is in [./src/node](./src/node) and the HTTP routes are implemented in
|
|
|
|
[./src/node/app](./src/node/app).
|
|
|
|
|
|
|
|
Most of the meaty parts are in our VS Code patch which is described next.
|
|
|
|
|
|
|
|
### VS Code Patch
|
|
|
|
|
|
|
|
Back in v1 of code-server, we had an extensive patch of VS Code that split the codebase
|
|
|
|
into a frontend and server. The frontend consisted of all UI code and the server ran
|
|
|
|
the extensions and exposed an API to the frontend for file access and everything else
|
|
|
|
that the UI needed.
|
|
|
|
|
|
|
|
This worked but eventually Microsoft added support to VS Code to run it in the web.
|
|
|
|
They have open sourced the frontend but have kept the server closed source.
|
|
|
|
|
|
|
|
So in interest of piggy backing off their work, v2 and beyond use the VS Code
|
|
|
|
web frontend and fill in the server. This is contained in our
|
|
|
|
[./ci/dev/vscode.patch](../ci/dev/vscode.patch) under the path `src/vs/server`.
|
|
|
|
|
|
|
|
Other notable changes in our patch include:
|
|
|
|
|
|
|
|
- Add our own build file which includes our code and VS Code's web code.
|
|
|
|
- Allow multiple extension directories (both user and built-in).
|
|
|
|
- Modify the loader, websocket, webview, service worker, and asset requests to
|
|
|
|
use the URL of the page as a base (and TLS if necessary for the websocket).
|
|
|
|
- Send client-side telemetry through the server.
|
|
|
|
- Allow modification of the display language.
|
|
|
|
- Make it possible for us to load code on the client.
|
|
|
|
- Make extensions work in the browser.
|
|
|
|
- Make it possible to install extensions of any kind.
|
|
|
|
- Fix getting permanently disconnected when you sleep or hibernate for a while.
|
|
|
|
- Add connection type to web socket query parameters.
|
|
|
|
|
|
|
|
Some known issues presently:
|
|
|
|
|
|
|
|
- Creating custom VS Code extensions and debugging them doesn't work.
|
|
|
|
- Extension profiling and tips are currently disabled.
|
|
|
|
|
|
|
|
As the web portion of VS Code matures, we'll be able to shrink and maybe even entirely
|
|
|
|
eliminate our patch. In the meantime, however, upgrading the VS Code version requires
|
|
|
|
ensuring that the patch still applies and has the intended effects.
|
|
|
|
|
|
|
|
To generate a new patch run `yarn vscode:diff`.
|
|
|
|
|
|
|
|
**note**: We have extension docs on the CI and build system at [./ci/README.md](../ci/README.md)
|
|
|
|
|
|
|
|
If functionality doesn't depend on code from VS Code then it should be moved
|
|
|
|
into code-server otherwise it should be in the patch.
|
|
|
|
|
|
|
|
In the future we'd like to run VS Code unit tests against our builds to ensure features
|
|
|
|
work as expected.
|