Three ways to industrialize JavaScript
Software Engineering in any language if you want to write robust code requires a sharp tool, of course, JavaScript is no exception, many friends just get started when the tool is not the right choice, JavaScript also requires software debugging technology, I hope this article summarizes the three kinds of tools will be helpful to everyone's study.
Any language learning can not be separated from practice, do not write code is never learn programming, of course, JavaScript is no exception, many people recommend direct browser debugging, personally think this recommendation should be very basic, such as Chrome, Firefox does provide a practical front-end debugging tools, But personally, a small amount of code, it is difficult to imagine using the browser to debug large-scale code.
I recommend the first tool is the Firedebug Firefox, write good simple JavaScript code directly to the right of the code area, directly can run, such a tool can let beginners have a visual understanding of the code.
The second tool I recommend is Visual Studio code, the recommended reason is IntelliSense, as visible, when we want to enter the jquery function, we just need to enter the first few letters, we can get a complete hint, as we write C + + or Java code, This is a little bit of a sense of primary industrialization.
The third recommended tool is the Eclipse JavaScript debugging plugin, with the full implementation of rhino for JavaScript, we can fully industrialized debugging our JavaScript code, break point, hit no execution, code jump, This is productivity.
Summarize
This article summarizes the JavaScript debugging in three ways, I hope that you can be the industrialized way to debug, out of the browser of the small box, writing their own JavaScript code, I hope to help you. today's JavaScript is already a platform, and it's not enough to just play with the browser.
Three ways to industrialize your JavaScript