#前端自动化构建方案
- 利用webpack 打包工具,加上各种配套插件的支持,主要解决以下几个问题
- 把es7,es6等语法转为目前主流浏览器可以支持的语法
- 把react的JSX语法转为js语法
- 把less,sass等转为css文件,并自动完成浏览器私有前结结缀补齐
- 自动进行文件压缩,优化.加hash值
- 在开发环境实现对文件的变化自动重新打包
- 浏览器的自动刷新,react-hot热替换?
- 其它
$ npm install
$ npm run build
Learn how to use React in your own project.
We have several examples on the website. Here is the first one to get you started:
var HelloMessage = React.createClass({
render: function() {
return <div>Hello {this.props.name}</div>;
}
});
React.render(
<HelloMessage name="John" />,
document.getElementById('container')
);
This example will render "Hello John" into a container on the page.
You'll notice that we used an HTML-like syntax; we call it JSX. JSX is not required to use React, but it makes code more readable, and writing it feels like writing HTML. A simple transform is included with React that allows converting JSX into native JavaScript for browsers to digest.
The fastest way to get started is to serve JavaScript from the CDN (also available on cdnjs and jsdelivr):
<!-- The core React library -->
<script src="http://fb.me/react-0.13.0.js"></script>
<!-- In-browser JSX transformer, remove when pre-compiling JSX. -->
<script src="http://fb.me/JSXTransformer-0.13.0.js"></script>
We've also built a starter kit which might be useful if this is your first time using React. It includes a webpage with an example of using React with live code.
If you'd like to use bower, it's as easy as:
bower install --save react
The main purpose of this repository is to continue to evolve React core, making it faster and easier to use. If you're interested in helping with that, then keep reading. If you're not interested in helping right now that's ok too. :) Any feedback you have about using React would be greatly appreciated.
The process to build react.js
is built entirely on top of node.js, using many libraries you may already be familiar with.
- You have
node
installed at v0.10.0+ (it might work at lower versions, we just haven't tested). - You are familiar with
npm
and know whether or not you need to usesudo
when installing packages globally. - You are familiar with
git
.
Once you have the repository cloned, building a copy of react.js
is really easy.
# grunt-cli is needed by grunt; you might have this installed already
npm install -g grunt-cli
npm install
grunt build
At this point, you should now have a build/
directory populated with everything you need to use React. The examples should all work.
We use grunt to automate many tasks. Run grunt -h
to see a mostly complete listing. The important ones to know:
# Build and run tests with PhantomJS
grunt test
# Build and run tests in your browser
grunt test --debug
# For speed, you can use fasttest and add --filter to only run one test
grunt fasttest --filter=ReactIdentity
# Lint the code with ESLint
grunt lint
# Wipe out build directory
grunt clean
React is BSD licensed. We also provide an additional patent grant.
React documentation is Creative Commons licensed.
Examples provided in this repository and in the documentation are separately licensed.
There's only so much we can cram in here. To read more about the community and guidelines for submitting pull requests, please read the Contributing document.