From 75e44fdc844dee2d01c3edc50b045eeed8e518e8 Mon Sep 17 00:00:00 2001 From: Ben Potter Date: Mon, 4 Oct 2021 14:48:31 -0500 Subject: [PATCH 1/9] update comparisons in FAQ --- docs/FAQ.md | 30 ++++++++++++++++++++++-------- 1 file changed, 22 insertions(+), 8 deletions(-) diff --git a/docs/FAQ.md b/docs/FAQ.md index 8ade51ce7..9aa520900 100644 --- a/docs/FAQ.md +++ b/docs/FAQ.md @@ -1,5 +1,6 @@ + # FAQ - [Questions?](#questions) @@ -377,18 +378,31 @@ for extensions. Theia doesn't allow you to reuse your existing VS Code config. +## What's the difference between code-server and OpenVSCode-Server? + +code-server and OpenVSCode-Servr both allow you to access VS Code via a +browser. The two projects also use their own [forks of VS Code](https://github.com/cdr/vscode) to +leverage modern VS Code APIs and stay up to date with the upsteam version. + +However, OpenVSCode-Server is scoped at only making VS Code avalible in the web browser. +code-server includes some other features: + +- password auth +- proxy web ports +- certificate support +- plugin API +- settings sync (coming soon) + +For more details, see [this discussion post](https://github.com/cdr/code-server/discussions/4267#discussioncomment-1411583). + ## What's the difference between code-server and VS Code Codespaces? Both code-server and VS Code Codespaces allow you to access VS Code via a -browser. +browser. VS Code Codespaces, however, is a closed-source, paid service offered by +Microsoft. Codespaces are hosted in Microsoft's cloud. -VS Code Codespaces, however, is a closed-source, paid service offered by -Microsoft. While you can self-host environments with VS Code Codespaces, you -still need an Azure billing account, and you must access VS Code via the -Codespaces web dashboard instead of connecting directly to it. - -On the other hand, code-server is free, open-source, and can be run on any -machine with few limitations. +On the other hand, code-server is self-hosted, free, open-source, and +can be run on any machine with few limitations. ## Does code-server have any security login validation? From 7c26a82a17cfd91ef7b3068776bbd5b6bf74958b Mon Sep 17 00:00:00 2001 From: Ben Potter Date: Mon, 4 Oct 2021 14:57:58 -0500 Subject: [PATCH 2/9] format --- docs/CONTRIBUTING.md | 1 + docs/FAQ.md | 2 +- docs/MAINTAINING.md | 1 + docs/install.md | 1 + docs/ipad.md | 1 + docs/npm.md | 1 + docs/termux.md | 1 + 7 files changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/CONTRIBUTING.md b/docs/CONTRIBUTING.md index f15dd2f00..c610736af 100644 --- a/docs/CONTRIBUTING.md +++ b/docs/CONTRIBUTING.md @@ -1,5 +1,6 @@ + # Contributing - [Requirements](#requirements) diff --git a/docs/FAQ.md b/docs/FAQ.md index 9aa520900..a251c2f70 100644 --- a/docs/FAQ.md +++ b/docs/FAQ.md @@ -1,6 +1,5 @@ - # FAQ - [Questions?](#questions) @@ -27,6 +26,7 @@ - [Can I use Docker in a code-server container?](#can-i-use-docker-in-a-code-server-container) - [How do I disable telemetry?](#how-do-i-disable-telemetry) - [What's the difference between code-server and Theia?](#whats-the-difference-between-code-server-and-theia) +- [What's the difference between code-server and OpenVSCode-Server?](#whats-the-difference-between-code-server-and-openvscode-server) - [What's the difference between code-server and VS Code Codespaces?](#whats-the-difference-between-code-server-and-vs-code-codespaces) - [Does code-server have any security login validation?](#does-code-server-have-any-security-login-validation) - [Are there community projects involving code-server?](#are-there-community-projects-involving-code-server) diff --git a/docs/MAINTAINING.md b/docs/MAINTAINING.md index 466e6121d..66d01fc0b 100644 --- a/docs/MAINTAINING.md +++ b/docs/MAINTAINING.md @@ -1,5 +1,6 @@ + # Maintaining - [Team](#team) diff --git a/docs/install.md b/docs/install.md index e325fd6c4..663458b28 100644 --- a/docs/install.md +++ b/docs/install.md @@ -1,5 +1,6 @@ + # Install - [install.sh](#installsh) diff --git a/docs/ipad.md b/docs/ipad.md index 0a324315e..6ccf095bd 100644 --- a/docs/ipad.md +++ b/docs/ipad.md @@ -1,5 +1,6 @@ + # iPad - [Using the code-server progressive web app (PWA)](#using-the-code-server-progressive-web-app-pwa) diff --git a/docs/npm.md b/docs/npm.md index f02cec569..568407152 100644 --- a/docs/npm.md +++ b/docs/npm.md @@ -1,5 +1,6 @@ + # npm Install Requirements - [Node.js version](#nodejs-version) diff --git a/docs/termux.md b/docs/termux.md index 454b585e6..6519d601e 100644 --- a/docs/termux.md +++ b/docs/termux.md @@ -1,5 +1,6 @@ + # Termux - [Install](#install) From 816152ddbd74f50173126f4f5f6ad53467bc587b Mon Sep 17 00:00:00 2001 From: Ben Potter Date: Mon, 4 Oct 2021 17:41:36 -0500 Subject: [PATCH 3/9] fix typo --- docs/FAQ.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/FAQ.md b/docs/FAQ.md index a251c2f70..b458fef04 100644 --- a/docs/FAQ.md +++ b/docs/FAQ.md @@ -1,5 +1,6 @@ + # FAQ - [Questions?](#questions) @@ -380,7 +381,7 @@ Theia doesn't allow you to reuse your existing VS Code config. ## What's the difference between code-server and OpenVSCode-Server? -code-server and OpenVSCode-Servr both allow you to access VS Code via a +code-server and OpenVSCode-Server both allow you to access VS Code via a browser. The two projects also use their own [forks of VS Code](https://github.com/cdr/vscode) to leverage modern VS Code APIs and stay up to date with the upsteam version. From 70fbfc7ada523683dded0680c5975f07aa7587a0 Mon Sep 17 00:00:00 2001 From: Ben Potter Date: Tue, 5 Oct 2021 11:31:17 -0500 Subject: [PATCH 4/9] Update docs/FAQ.md Co-authored-by: Ashley McClelland --- docs/FAQ.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/FAQ.md b/docs/FAQ.md index b458fef04..57935e063 100644 --- a/docs/FAQ.md +++ b/docs/FAQ.md @@ -385,7 +385,7 @@ code-server and OpenVSCode-Server both allow you to access VS Code via a browser. The two projects also use their own [forks of VS Code](https://github.com/cdr/vscode) to leverage modern VS Code APIs and stay up to date with the upsteam version. -However, OpenVSCode-Server is scoped at only making VS Code avalible in the web browser. +However, OpenVSCode-Server is scoped at only making VS Code available in the web browser. code-server includes some other features: - password auth From bb1799ba04b2741686fe8f99f446c9e500e8f258 Mon Sep 17 00:00:00 2001 From: Ben Potter Date: Tue, 5 Oct 2021 11:31:24 -0500 Subject: [PATCH 5/9] Update docs/FAQ.md Co-authored-by: Ashley McClelland --- docs/FAQ.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/FAQ.md b/docs/FAQ.md index 57935e063..db571f19b 100644 --- a/docs/FAQ.md +++ b/docs/FAQ.md @@ -396,7 +396,7 @@ code-server includes some other features: For more details, see [this discussion post](https://github.com/cdr/code-server/discussions/4267#discussioncomment-1411583). -## What's the difference between code-server and VS Code Codespaces? +## What's the difference between code-server and GitHub Codespaces? Both code-server and VS Code Codespaces allow you to access VS Code via a browser. VS Code Codespaces, however, is a closed-source, paid service offered by From 8745f1aa638e0c6b18c0326df4f878e64ba1e089 Mon Sep 17 00:00:00 2001 From: Ben Potter Date: Tue, 5 Oct 2021 11:31:29 -0500 Subject: [PATCH 6/9] Update docs/FAQ.md Co-authored-by: Ashley McClelland --- docs/FAQ.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/FAQ.md b/docs/FAQ.md index db571f19b..9c92b311d 100644 --- a/docs/FAQ.md +++ b/docs/FAQ.md @@ -398,7 +398,7 @@ For more details, see [this discussion post](https://github.com/cdr/code-server/ ## What's the difference between code-server and GitHub Codespaces? -Both code-server and VS Code Codespaces allow you to access VS Code via a +Both code-server and GitHub Codespaces allow you to access VS Code via a browser. VS Code Codespaces, however, is a closed-source, paid service offered by Microsoft. Codespaces are hosted in Microsoft's cloud. From 1af83a3c564abfe540c7dc9f47b1bf93f6394007 Mon Sep 17 00:00:00 2001 From: Ben Potter Date: Tue, 5 Oct 2021 11:31:34 -0500 Subject: [PATCH 7/9] Update docs/FAQ.md Co-authored-by: Ashley McClelland --- docs/FAQ.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/FAQ.md b/docs/FAQ.md index 9c92b311d..fed050479 100644 --- a/docs/FAQ.md +++ b/docs/FAQ.md @@ -400,7 +400,7 @@ For more details, see [this discussion post](https://github.com/cdr/code-server/ Both code-server and GitHub Codespaces allow you to access VS Code via a browser. VS Code Codespaces, however, is a closed-source, paid service offered by -Microsoft. Codespaces are hosted in Microsoft's cloud. +GitHub and Microsoft. On the other hand, code-server is self-hosted, free, open-source, and can be run on any machine with few limitations. From fa6f47965ad1743557b6ab6a80be29e543ff7fc9 Mon Sep 17 00:00:00 2001 From: Ben Potter Date: Tue, 5 Oct 2021 11:31:40 -0500 Subject: [PATCH 8/9] Update docs/FAQ.md Co-authored-by: Ashley McClelland --- docs/FAQ.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/FAQ.md b/docs/FAQ.md index fed050479..2970ae09d 100644 --- a/docs/FAQ.md +++ b/docs/FAQ.md @@ -399,7 +399,7 @@ For more details, see [this discussion post](https://github.com/cdr/code-server/ ## What's the difference between code-server and GitHub Codespaces? Both code-server and GitHub Codespaces allow you to access VS Code via a -browser. VS Code Codespaces, however, is a closed-source, paid service offered by +browser. GitHub Codespaces, however, is a closed-source, paid service offered by GitHub and Microsoft. On the other hand, code-server is self-hosted, free, open-source, and From ee1de79af6a41b0d060b89d5c3f135b4ce951500 Mon Sep 17 00:00:00 2001 From: Ben Potter Date: Tue, 5 Oct 2021 11:40:57 -0500 Subject: [PATCH 9/9] fix weird format --- docs/CONTRIBUTING.md | 1 - docs/FAQ.md | 3 +-- docs/MAINTAINING.md | 1 - docs/install.md | 1 - docs/ipad.md | 1 - docs/npm.md | 1 - docs/termux.md | 1 - 7 files changed, 1 insertion(+), 8 deletions(-) diff --git a/docs/CONTRIBUTING.md b/docs/CONTRIBUTING.md index c610736af..f15dd2f00 100644 --- a/docs/CONTRIBUTING.md +++ b/docs/CONTRIBUTING.md @@ -1,6 +1,5 @@ - # Contributing - [Requirements](#requirements) diff --git a/docs/FAQ.md b/docs/FAQ.md index 2970ae09d..8f0e18c1b 100644 --- a/docs/FAQ.md +++ b/docs/FAQ.md @@ -1,6 +1,5 @@ - # FAQ - [Questions?](#questions) @@ -28,7 +27,7 @@ - [How do I disable telemetry?](#how-do-i-disable-telemetry) - [What's the difference between code-server and Theia?](#whats-the-difference-between-code-server-and-theia) - [What's the difference between code-server and OpenVSCode-Server?](#whats-the-difference-between-code-server-and-openvscode-server) -- [What's the difference between code-server and VS Code Codespaces?](#whats-the-difference-between-code-server-and-vs-code-codespaces) +- [What's the difference between code-server and GitHub Codespaces?](#whats-the-difference-between-code-server-and-github-codespaces) - [Does code-server have any security login validation?](#does-code-server-have-any-security-login-validation) - [Are there community projects involving code-server?](#are-there-community-projects-involving-code-server) - [How do I change the port?](#how-do-i-change-the-port) diff --git a/docs/MAINTAINING.md b/docs/MAINTAINING.md index 66d01fc0b..466e6121d 100644 --- a/docs/MAINTAINING.md +++ b/docs/MAINTAINING.md @@ -1,6 +1,5 @@ - # Maintaining - [Team](#team) diff --git a/docs/install.md b/docs/install.md index 663458b28..e325fd6c4 100644 --- a/docs/install.md +++ b/docs/install.md @@ -1,6 +1,5 @@ - # Install - [install.sh](#installsh) diff --git a/docs/ipad.md b/docs/ipad.md index 6ccf095bd..0a324315e 100644 --- a/docs/ipad.md +++ b/docs/ipad.md @@ -1,6 +1,5 @@ - # iPad - [Using the code-server progressive web app (PWA)](#using-the-code-server-progressive-web-app-pwa) diff --git a/docs/npm.md b/docs/npm.md index 568407152..f02cec569 100644 --- a/docs/npm.md +++ b/docs/npm.md @@ -1,6 +1,5 @@ - # npm Install Requirements - [Node.js version](#nodejs-version) diff --git a/docs/termux.md b/docs/termux.md index 6519d601e..454b585e6 100644 --- a/docs/termux.md +++ b/docs/termux.md @@ -1,6 +1,5 @@ - # Termux - [Install](#install)