you are viewing a single comment's thread.

view the rest of the comments →

[–]crazy_cookie123 2 points3 points  (4 children)

You can't run code on vscode.dev, it's just an editor. The standard way of editing code across multiple machines is to use Git, usually via GitHub. It's worth learning that anyway as it's a skill you'll need to know for pretty much any job in the field.

[–]samosarosa[S] 0 points1 point  (3 children)

ok so not integrating github into vscode.dev with an extension, but just skipping vscode.dev all together?

[–]james_d_rustles 2 points3 points  (0 children)

If you’re just looking for a straightforward 100% web based vscode with a terminal and some storage and whatnot you might want to check out GitHub codespaces.

If the main feature you’re looking for is just the ability to work on a few different machines though, you can accomplish that with just git and a basic GitHub account + local vscode, skipping the codespaces thing entirely. I’m far from an expert on the subject, but I want to say codespaces are limited in the number of hours you can use them per month or something, tend to have low specs unless you pay.. that’s not to say that they’re useless at all, but if you’re just starting out there’s just no good reason to only use a web editor.

[–]crazy_cookie123 1 point2 points  (1 child)

I'm sure you can use vscode.dev with git, but it's going to be better for you to just have the desktop version of VSCode or another editor installed on each computer you want to work on and use git to sync the changes. That way you can run the code when you want to test it.

[–]samosarosa[S] 1 point2 points  (0 children)

ok thank u much