Comparer les performances des moteur JavaScript

Samedi, 1 novembre 2008, 12:44 | Category : développement web
Tags : , , , , ,

Encore un petit article qui compare les performances des nouvelles génération de moteurs JavaScript.

Quelques remarques :

IE7 ce n’est vraiment pas la panacée !!
Google Chrome ne déchire pas tout
FF 3.1 Beta 1 est plus lent que FF 3.0.1 (l’auteur de l’article lui-même s’interroge sur cette oncongruité)
WebKit, ça envoie pas mal !

Liens

GWT performance with the latest JavaScript [...]

About running JavaScript speed

Mardi, 23 septembre 2008, 22:30 | Category : Archives stefeclipse
Tags :

Speed test: Google Chrome beats Firefox, IE, Safari (September 2, 2008)
http://news.cnet.com/8301-1001_3-10030888-92.html

SquirrelFish Extreme promises to speed JavaScript in Safari 4.0 (September 19, 2008)
http://www.roughlydrafted.com/2008/09/19/squirrelfish-extreme-promises-to-speed-javascript-in-safari-40/

For the benefit of AJAX applications ?

Form fields validators and GwtExt

Mardi, 22 juillet 2008, 23:08 | Category : Archives stefeclipse
Tags : , , ,

This article will show an easy way to use regexp field validation on client-side using GwtExt.

The chosen policy is to implements com.gwtext.client.widgets.form.Validator.
The result is the following class ‘PatternValidator’:
private static class PatternValidator implements Validator {

protected String message;

protected String pattern;

[...]

RegExp with javascript: online tester

Lundi, 30 juin 2008, 22:15 | Category : Archives stefeclipse
Tags : , ,

As GWT java client code is compiled into javascript code, regexp (in field validators) must be javascript compatible.
Here is some links that helps to design javascript regexp:

Outil d’analyse des expressions régulières
Testeur d’expressions régulières JavaScript
JavaScript RegExp Example: Regular Expression Tester