- Notifications
You must be signed in to change notification settings - Fork5
A declarative, efficient, and flexible JavaScript library for building user interfaces.
License
Unknown and 2 other licenses found
Licenses found
enaqx/react
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
React is a JavaScript library for building user interfaces.
- Declarative: React makes it painless to create interactive UIs. Design simple views for each state in your application, and React will efficiently update and render just the right components when your data changes. Declarative views make your code more predictable, simpler to understand, and easier to debug.
- Component-Based: Build encapsulated components that manage their own state, then compose them to make complex UIs. Since component logic is written in JavaScript instead of templates, you can easily pass rich data through your app and keep state out of the DOM.
- Learn Once, Write Anywhere: We don't make assumptions about the rest of your technology stack, so you can develop new features in React without rewriting existing code. React can also render on the server using Node and power mobile apps usingReact Native.
Learn how to use React in your own project.
We have several exampleson the website. Here is the first one to get you started:
varHelloMessage=React.createClass({render:function(){return<div>Hello{this.props.name}</div>;}});ReactDOM.render(<HelloMessagename="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 a CDN. We're usingunpkg below but React is also available oncdnjs andjsdelivr:
<!-- The core React library --><scriptsrc="https://unpkg.com/react@15.3.2/dist/react.js"></script><!-- The ReactDOM Library --><scriptsrc="https://unpkg.com/react-dom@15.3.2/dist/react-dom.js"></script>
We've also built astarter 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 usebower, it's as easy as:
bower install --save react
And it's just as easy withnpm:
npm i --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 buildreact.js
is built entirely on top of node.js, using many libraries you may already be familiar with.
- You have
node
installed at v4.0.0+ andnpm
at v2.0.0+. - You have
gcc
installed or are comfortable installing a compiler if needed. Some of ournpm
dependencies may require a compilation step. On OS X, the Xcode Command Line Tools will cover this. On Ubuntu,apt-get install build-essential
will install the required packages. Similar commands should work on other Linux distros. Windows will require some additional steps, see thenode-gyp
installation instructions for details. - 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 ofreact.js
is really easy.
# grunt-cli is needed by grunt; you might have this installed alreadynpm install -g grunt-clinpm installgrunt build
At this point, you should now have abuild/
directory populated with everything you need to use React. The examples should all work.
We use grunt to automate many tasks. Rungrunt -h
to see a mostly complete listing. The important ones to know:
# Build and run tests with PhantomJSgrunttest# Lint the code with ESLintgrunt lint# Wipe out build directorygrunt clean
To help you get your feet wet and get you familiar with our contribution process, we have a list ofgood first bugs that contain bugs which are fairly easy to fix. This is a great place to get started.
React isBSD licensed. We also provide an additionalpatent grant.
React documentation isCreative Commons licensed.
Examples provided in this repository and in the documentation areseparately 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 theContributing document.
See theTroubleshooting Guide
About
A declarative, efficient, and flexible JavaScript library for building user interfaces.
Resources
License
Unknown and 2 other licenses found
Licenses found
Stars
Watchers
Forks
Packages0
Languages
- JavaScript96.9%
- C++1.6%
- TypeScript0.6%
- CoffeeScript0.4%
- Python0.3%
- C0.2%