reactiscriptsixify
v0.8.2
Published
browserify v2 plugin for react from Facebook to support jsx with ecmascript 6
Downloads
28
Maintainers
Readme
Browserify transform for text/jsx (superset of JavaScript used in
React library).
Basic usage is:
% browserify -t reactify main.jsreactify transform activates for files with either .jsx extension or /**
@jsx React.DOM */ pragma as a first line for any .js file.
If you want to reactify modules with other extensions, pass an -x / --extension
option:
% browserify -t coffeeify -t [ reactify --extension coffee ] main.coffee