All Projects → facebook → React

facebook / React

Licence: mit
A declarative, efficient, and flexible JavaScript library for building user interfaces.

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects
CSS
56736 projects
C++
36643 projects - #6 most used programming language
typescript
32286 projects
coffeescript
4710 projects

Projects that are alternatives of or similar to React

Layerjs
layerJS: Javascript UI composition framework
Stars: ✭ 1,825 (-98.98%)
Mutual labels:  library, frontend, declarative
Crab
JavaScript library for building user interfaces with Custom Elements, Shadow DOM and React like API
Stars: ✭ 22 (-99.99%)
Mutual labels:  library, frontend
Ivi
🔥 Javascript (TypeScript) library for building web user interfaces
Stars: ✭ 445 (-99.75%)
Mutual labels:  library, frontend
Angular Tree Component
A simple yet powerful tree component for Angular (>=2)
Stars: ✭ 1,031 (-99.43%)
Mutual labels:  library, frontend
Beam
✨ Expressive WebGL
Stars: ✭ 383 (-99.79%)
Mutual labels:  library, frontend
Unicode Bidirectional
A Javascript implementation of the Unicode 9.0.0 Bidirectional Algorithm
Stars: ✭ 35 (-99.98%)
Mutual labels:  library, frontend
Webrix
Powerful building blocks for React-based web applications
Stars: ✭ 41 (-99.98%)
Mutual labels:  library, frontend
Notifier
Notifications library made with VanillaJS.
Stars: ✭ 67 (-99.96%)
Mutual labels:  library, frontend
Easygrid
EasyGrid - VanillaJS Responsive Grid
Stars: ✭ 77 (-99.96%)
Mutual labels:  library, frontend
Chat Ui Kit React
Build your own chat UI with React components in few minutes. Chat UI Kit from chatscope is an open source UI toolkit for developing web chat applications.
Stars: ✭ 131 (-99.93%)
Mutual labels:  library, frontend
Fe
前端热门文章阅读
Stars: ✭ 174 (-99.9%)
Mutual labels:  library, frontend
Bttn.css
Awesome buttons for awesome projects!
Stars: ✭ 2,004 (-98.88%)
Mutual labels:  library, frontend
Vuent
🎨 Vue.js components implementing Microsoft Fluent Design
Stars: ✭ 207 (-99.88%)
Mutual labels:  library, frontend
Php Library Template
+ 📒 Provides a GitHub repository template for a PHP library, using GitHub actions.
Stars: ✭ 249 (-99.86%)
Mutual labels:  library
Fe Cookbook
HTML/CSS & JavaScript, Web and related. 前端手册
Stars: ✭ 252 (-99.86%)
Mutual labels:  frontend
Jreactive 8583
Java Client & Server for ISO8583 & Netty
Stars: ✭ 248 (-99.86%)
Mutual labels:  library
Checklist
📋 A Frontend Checklist for Websites
Stars: ✭ 248 (-99.86%)
Mutual labels:  frontend
Inesita
Frontend web application framework in Ruby using Opal.
Stars: ✭ 253 (-99.86%)
Mutual labels:  frontend
Mogwai
The minimalist, obvious, graphical, web application interface
Stars: ✭ 249 (-99.86%)
Mutual labels:  frontend
Simpleeval
Simple Safe Sandboxed Extensible Expression Evaluator for Python
Stars: ✭ 246 (-99.86%)
Mutual labels:  library

React · GitHub license npm version CircleCI Status PRs Welcome

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 using React Native.

Learn how to use React in your own project.

Installation

React has been designed for gradual adoption from the start, and you can use as little or as much React as you need:

You can use React as a <script> tag from a CDN, or as a react package on npm.

Documentation

You can find the React documentation on the website.

Check out the Getting Started page for a quick overview.

The documentation is divided into several sections:

You can improve it by sending pull requests to this repository.

Examples

We have several examples on the website. Here is the first one to get you started:

function HelloMessage({ name }) {
  return <div>Hello {name}</div>;
}

ReactDOM.render(
  <HelloMessage name="Taylor" />,
  document.getElementById('container')
);

This example will render "Hello Taylor" 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. If you're using React as a <script> tag, read this section on integrating JSX; otherwise, the recommended JavaScript toolchains handle it automatically.

Contributing

The main purpose of this repository is to continue evolving React core, making it faster and easier to use. Development of React happens in the open on GitHub, and we are grateful to the community for contributing bugfixes and improvements. Read below to learn how you can take part in improving React.

Code of Conduct

Facebook has adopted a Code of Conduct that we expect project participants to adhere to. Please read the full text so that you can understand what actions will and will not be tolerated.

Contributing Guide

Read our contributing guide to learn about our development process, how to propose bugfixes and improvements, and how to build and test your changes to React.

Good First Issues

To help you get your feet wet and get you familiar with our contribution process, we have a list of good first issues that contain bugs which have a relatively limited scope. This is a great place to get started.

License

React is MIT licensed.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].