Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ngohungphuc/reactjs
React JS APP
https://github.com/ngohungphuc/reactjs
react react-app reactjs
Last synced: about 15 hours ago
JSON representation
React JS APP
- Host: GitHub
- URL: https://github.com/ngohungphuc/reactjs
- Owner: ngohungphuc
- Created: 2017-06-19T13:21:32.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-20T14:21:16.000Z (over 6 years ago)
- Last Synced: 2024-04-14T21:18:12.684Z (7 months ago)
- Topics: react, react-app, reactjs
- Language: JavaScript
- Homepage:
- Size: 39.6 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
> ReactJS APP
`componentWillMount()` : This method is called before the component is initially rendered. So it is called before the render method is executed. You can't perform any type of DOM manipulation here because the component isn't available in the DOM yet.
`componentDidMount()` : This method is called right after the component has been rendered. So it is called immediately after the render method has been executed. It's the best place to perform network and AJAX calls.
`componentWillUnmount()` : This method is called right before the component is removed from the DOM.
`shouldComponentUpdate()` : This method determines if a re-rendering should occur or not. It is never called on initial rendering and it's always called before the render method.
`componentWillUpdate()` : This method is called as soon as shouldComponentUpdate returns true. It is called just before the component is rendered with new data.
![React](img/reactjs.png)