Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jacobhsu/react16
https://github.com/jacobhsu/react16
react
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/jacobhsu/react16
- Owner: JacobHsu
- Created: 2019-11-26T03:22:05.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T01:42:21.000Z (about 2 years ago)
- Last Synced: 2024-04-10T16:05:27.157Z (9 months ago)
- Topics: react
- Language: JavaScript
- Homepage: https://jacobhsu.github.io/react16/
- Size: 1.28 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 24
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# react16
[Create React App](https://zh-hant.reactjs.org/docs/create-a-new-react-app.html)
```js
npx create-react-app my-app
cd my-app
yarn start
```## Hook
Hook 是 React 16.8 中增加的新功能。它讓你不必寫 class 就能使用 state 以及其他 React 的功能。
Hook 是 function,他讓你可以從 function component「hook into」React state 與生命週期功能。
## Effect Hook
你從前可能在 React component 做過 fetch 資料、訂閱、或手動改變 DOM。我們稱這些操作「`side effect`」(或簡稱 effect)因為他們可以影響其他 component 且在 render 期間無法完成。
Effect Hook useEffect 在 function component 中加入運作 side effect 的能力。他和 `componentDidMount`,`componentDidUpdate`,與 `componentWillUnmount` 有著同樣的宗旨,但整合進一個單一的 API。
## docsify
[docsify.js](https://docsify.js.org/#/zh-cn/quickstart)
`$ docsify init ./docs`
`$ docsify serve docs`GitHub Pages `master branch /docs folder`
[Sidebar](https://docsify.js.org/#/more-pages?id=sidebar)