Eval is complementary to Compilation which is used in Templating the code, by templating I mean, that you write a simplified template generator that generates useful template code which increases development speed.
I have written a framework, where developers dont use EVAL, but they use our framework and in turn that framework has to use EVAL to generate templates.
Performance of EVAL can be increased by using following method, instead executing the script, you must return a function.
var a = eval("3 + 5");
Should be organized as
var f = eval("(function(a,b) { return a + b; })");
var a = f(3,5);
Caching f will certainly improve the speed.
Also Chrome allows debugging of such functions very easily.
Regarding Security, using eval or not will hardly make any difference,
- First of all, browser invokes entire script in sandbox.
- Any code that is evil in EVAL, it is evil in browser itself, attacker or anyone can easily inject a script node in DOM and do anything if he can eval anything. Not using EVAL will not make any difference.
- It is mostly a poor Server Side Security that is harmful, poor cookies validation or poor ACL implementation on server causes most attacks.
- Recent Java vulnerability etc was there in Java's native code, JavaScript was and is designed to run in sandbox, where else applets were designed to run outside sandbox with certificate etc that lead to vulnerability and many other things.
- Writing a code for imitating browser is not difficult, all you have to do is make HTTP request to server with a your fav user agent string. All testing tools mock browsers anyway, if an attacker want to harm you, EVAL is their last resort, they have many other ways to deal with your server side security.
- Browser DOM does not have access to files, not user name, infact nothing on the machine that eval can give access to.
If your Server Side Security is Solid enough for anyone to attack from anywhere, you should not worry about EVAL, as I mentioned, if EVAL would not exist, attackers have many tools to hack into your server irrespective of your browser's EVAL capability.
Eval is only good for generating some templates to do complex string processing based on something that is not used in advanced. For example,I will prefer
"FirstName + ' ' + LastName"
As opposed to
"LastName + ' ' + FirstName"
As my display name, which can come from database and which is not hardcoded.