DEV Community

Discussion on: Why Are Some Developers so Allergic to IDEs?

Collapse
 
rrampage profile image
Raunak Ramakrishnan • Edited

I think it depends heavily on the language. I use Eclipse when working with huge (Java) codebases, vim for small shell or python scripts / quick edits and VS Code for medium sized projects (Python) and when learning a new language (currently Haskell).

Java lends itself very well to IDEs. We can fearlessly refactor and make big changes. Python OTOH is very dynamic, so I rely more on linting and unit tests.

Collapse
 
waterlink profile image
Alex Fedorov

That is a nice use case: learning a new language.

If you don’t have 20+ languages behind your back, it’s actually a good idea to do this without IDE to gain a deeper understanding of the syntax, import system, build system and how it works in general.

I love IDEs for great automated refactoring capabilities and I always work with tests (TDD), so for me, fearless refactoring is a must in my workflow. Even for things like Python or Ruby.