Echo JS 0.11.0

<~>

tracker1 1234 days ago. link 1 point
Probably an okay guide for a total newbie... I absolutely recommend Visual Studio Code (VS Code), it's hands down one of the best editor options imo.

VS Code Killer features:

 - directory tree view
 - integrated terminal
 - remote coding (WSL2 and SSH)
 - good git integration (not great)
 - okay merge tooling (not great)

If you are on Windows, install WSL2 (I prefer Ubuntu, but other options work well too, kind of a pain to get setup, but great after that).  WSL2 gives you a full linux envornment to work in.  With VS Code remoting, you can launch code from inside your WSL2 prompt and all is right with the world.

Also for windows, the new Terminal (both terminal and wsl2 require windows 10 version 2004 or neewer).  It's just a better experience in general.

Next up, nvm... having nvm installed is a must when you work with JS and web applications, may also want a script to download/update Deno in addition to nvm/node.  Deno is quickly becoming a really nice option designed for future projects, still some rough edges though.

Git.  You need to get used to git, most modern source control is using it either hosted or locally.  From Github, Gitlab and Azure you will see it in a career as a developer.  When you install git for windows, be sure to use the option to make git tools available for windows cmd and unix.  Select checkout-asis commit as unix, this will keep you in-line with the rest.

Configure git in your WSL2 to use the git credential manager in windows.

Last and certainly not least, Docker.  For any services you work against locally, there's likely a dockerized version you should target.  Microsoft SQL Server, check.  PostgreSQL, check.  RabbitMQ, redis, mysql, etc, check.  Also, get used to making a docker-compose file for any project with backend services, and script everything... updates, schema changes... even if you're deploying to bare hardware you'll thank yourself.  This also lets new developers onboard super quickly.  By using Docker and scripting all the things, you can setup/teardown between projects at ease.  If in windows, try to stick to your WSL2 environment and ensure Docker is setup and configured for WSL2 environment.  Do not bother with "Windows Containers" it's a dead end.

Other than general entertainment stuff (spotify, etc), Email, Teams/Slack... the above is pretty much all I need to be productive.  I also install the starship prompt and a few other bits, but the above goes a long way to being productive.  I tend to prefer npm and node scripts only because my peers on Windows can also use them, and even though I do edit in wsl2, most of the docker target stuff works from windows without issue, ymmv.