jsx编译成原生javascript有什么好的工具吗
jsx编译成原生javascript有什么好的工具吗
jsx编译成原生javascript有什么好的工具吗
2016-03-23
http://reactjs.cn/react/docs/getting-started.html
先安装命令行工具(依赖 npm):
npm install -g react-tools
然后将你的 src/helloworld.js 文件转成标准的 JavaScript:
jsx --watch src/ build/
一旦你修改了, build/helloworld.js 文件会自动生成。
举报