I'm on the process of refactoring a large JavaScript application, which has a lot of repeated functions with 2 or 3 different parameters, a lot of global variables used in several modules, etc.
Which tool do you recommend for this purpose?
I'm on the process of refactoring a large JavaScript application, which has a lot of repeated functions with 2 or 3 different parameters, a lot of global variables used in several modules, etc. Which tool do you recommend for this purpose? |
||||
As it currently stands, this question is not a good fit for our Q&A; format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
WebStorm by JetBrains - from the same company that makes ReSharper (a popular refactoring tool for C#). Several of their other products may also include Javascript refactoring capabilities. (They have IDEs for PHP, Python, Ruby, ...) |
|||
|
grep
andawk
will be of help. – Zirak Jan 19 at 1:39