mirror of
https://github.com/facebook/react.git
synced 2026-02-26 00:05:02 +00:00
Update links to use https:// where it is supported. There's probably a lot more that could be fixed, but these are the core ones I found (especially the download links in order to prevent MITM attacks). Note that there are some fb.me links that will redirect to http:// even while accessed over https://, but this seemed like the best way to fix those for now. NOTE: Only non-third-party files were modified. There are references to http:// URLs in vendored/third-party files, but seems appropriate to fix upstream for those rather than editing the files. Also, copy one image locally to the blog, as it was hotlinking to a site that did not support https://. Last, use youtube-nocookie.com instead of youtube.com for video embeds, as the former doesn't try to set a cookie on load (privacy enhancement).
21 lines
928 B
Markdown
21 lines
928 B
Markdown
# react
|
|
|
|
An npm package to get you immediate access to [React](https://facebook.github.io/react/),
|
|
without also requiring the JSX transformer. This is especially useful for cases where you
|
|
want to [`browserify`](https://github.com/substack/node-browserify) your module using
|
|
`React`.
|
|
|
|
**Note:** by default, React will be in development mode. The development version includes extra warnings about common mistakes, whereas the production version includes extra performance optimizations and strips all error messages.
|
|
|
|
To use React in production mode, set the environment variable `NODE_ENV` to `production`. A minifier that performs dead-code elimination such as [UglifyJS](https://github.com/mishoo/UglifyJS2) is recommended to completely remove the extra code present in development mode.
|
|
|
|
## Example Usage
|
|
|
|
```js
|
|
var React = require('react');
|
|
|
|
// You can also access ReactWithAddons.
|
|
var React = require('react/addons');
|
|
```
|
|
|