I've had great luck using React's JSXTransformer.js to develop using JSX in the browser:
<script src="http://fb.me/JSXTransformer-0.11.1.js"></script>
<script type="text/jsx">
/** @jsx React.DOM */
...
</script>
To reduce boilerplate, I'd like to use some of the features from Harmony, e.g. arrow functions. Facebook's JSX Compiler Service has a harmony checkbox which transforms ES6 to more traditional JS:
var f = v => this.props[v];
// becomes var f = function(v) { return this.props[v]; }.bind(this);
Is it possible to enable this transformation with the in-browser JSX?