I really hate the IDE. They are too heavyweight and add a bunch of IDE specific files and folders and whatnot when creating a project. For the sake of making things easier, I use code editors. My favorite are Brackets and Microsoft's cross platform Visual Studio Code. My only issue is that no matter how hard I try, I cannot find a way to compile or debug Java in these editors. When I make a search for "debug java in (editor name here), I get a bunch of results for debugging JavaScript, not Java.
Does anyone on stack know how to do this?
You can compile Java using the command line, by navigating to the correct directory and using the javac command. I'm afraid you're probably out of luck when it comes to debuggers. The best you can do, to my knowledge, is to use prints to track your code.