I'm planning to work through The Odin Project on my work computer, but I can't install anything. Is it possible to use VSCode, which is already installed, and run all my code directly in the browser?
5 Answers
That sounds totally doable! If you can access VSCode, you can get quite a bit done with just that and your browser.
Can you install any extensions in VSCode? If yes, try the SSH extension and you could work remotely on a low-cost VPS. That's a great workaround!
Honestly, The Odin Project is about building websites. All you really need is a simple text editor and the ability to save your files as .html, .css, or .js.
You might run into issues. For certain lessons, you'll need to install Git and Node.js, especially if you're doing the full-stack JavaScript path. Some foundational lessons might even need Node to run tests. If you pick the Ruby on Rails route, you'll have to install Ruby and Rails too, along with PostgreSQL. The course works best in a UNIX-like environment, so being on Windows without WSL could complicate things a bit.
Can you clarify what OS your work computer is running? Also, why do you think you can't install anything? In my experience, many workplaces allow you to install essential tools like Git, Node, and others for your development work, especially if you discuss it with your manager.
Even if you can't install that, ssh might already be available on your system. You could just use vim or neovim for your coding!