DEV Community

Discussion on: What is the best code editor?

Collapse
 
unfor19 profile image
Meir Gabay • Edited

IDE: VS Code
I work with:

Languages: JavaScript, TypeScript, Vue, Python, Django, Bash
Technologies: git (GitHub), Docker, terraform, drone.io, serverless-framework

Most of the common languages/technologies have extensions, so it makes it easier/friendlier to use them.

Python Django - as far as I know, PyCharm Community Edition doesn't support Django natively, while VS Code has no limitation with Django (or with any other technology/framework), so if you're working with Django you should consider that.

And another crazy thing, you can run VS Code in your browser - github.com/cdr/code-server

docker run -it -p 127.0.0.1:8080:8080 \
  -v "$PWD:/home/coder/project" \
  -u "$(id -u):$(id -g)" \
  codercom/code-server:latest
Collapse
 
abhinav profile image
Abhinav Kumar

Also see Visual Studio Codespaces/GitHub Codespaces.