https://github.com/react-native-training/react-v-15.6
React version 15.6 for React Native Web dependency
https://github.com/react-native-training/react-v-15.6
Last synced: about 1 year ago
JSON representation
React version 15.6 for React Native Web dependency
- Host: GitHub
- URL: https://github.com/react-native-training/react-v-15.6
- Owner: react-native-training
- License: other
- Created: 2017-09-06T21:58:51.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-09-06T21:59:17.000Z (over 8 years ago)
- Last Synced: 2025-01-11T16:49:58.794Z (about 1 year ago)
- Language: JavaScript
- Size: 134 KB
- Stars: 1
- Watchers: 4
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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');
```