Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ahngh0113/todolist_react
CRA없이 React todolist 웹앱 개발
https://github.com/ahngh0113/todolist_react
babel git-flow netlify node react react-hooks styled-components webpack
Last synced: about 1 month ago
JSON representation
CRA없이 React todolist 웹앱 개발
- Host: GitHub
- URL: https://github.com/ahngh0113/todolist_react
- Owner: ahngh0113
- License: mit
- Created: 2021-09-27T04:42:13.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-10-22T15:09:48.000Z (about 3 years ago)
- Last Synced: 2024-09-10T13:44:22.890Z (4 months ago)
- Topics: babel, git-flow, netlify, node, react, react-hooks, styled-components, webpack
- Language: JavaScript
- Homepage: https://skytodo-react.netlify.app/
- Size: 1.02 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# TODO LIST
**할 일을 적고 체크, 수정, 삭제할 수 있는 웹앱**
Tech Stack
 
 
 
 
 
 
 
### React
- React Hook을 이용하여 개발.
- contextAPI와 useReducer를 사용하여 state 통합 관리.
- useRef를 통해 비제어 컴포넌트 구성.
- useEffect를 이용하여 focus() or 서버에서 데이터 가져오기 수행.
- useState를 이용하여 무한 클릭 방지.
- React.memo를 통해 props를 비교하여 불필요한 랜더링 최소화.
- Portals를 이용하여 modal 생성.
- axios로 서버와의 통신.### Styled-components
- CSS in JS로 JS안에 CSS를 작성할 수 있는 라이브러리.
- props를 받아 지정 값을 설정할 수 있음.
- responsive web을 위해 todo가 넘치면 '...'으로 표시.### Node.js
- node 환경에서 개발.
- npm을 통해 react, react-dom, axios, webpack에 필요한 모든 것, sweetalert, reset-css를 다운받아 개발.### Webpack
- Webpack을 이용하여 번들 사용.
- 'HtmlWebpackPlugin'을 통해 기존 HTML 사용.
- 'MiniCssExtractPlugin'로 css파일을 생성하여 HTML에 연결.
- 'CleanWebpackPlugin'로 bulid 시 필요없는 파일 삭제.
- 'CopyPlugin'로 static폴더를 지정하여 이미지나 폰트 파일을 저장.
- babel, css loader로 파일 읽기.### Babel
- ES6^의 문법을 ES5이하의 문법으로 변환하여 모든 브라우저에서 동작할 수 있게 함.
- React JSX문법을 컴퓨터가 읽을 수 있는 코드로 변환.### Git-flow
- git-flow를 통한 브랜치 관리
### Netlify
- 배포를 도와주는 사이트.
##
## Product
> 이미지 클릭 시 페이지 이동
[](https://skytodo-react.netlify.app/)
## Express (server)
> https://github.com/Ahn-GiHwan/todolist_express
## v3.0.1
- 수정 시 호출되는 모달창의 input placeholder값을 기존 todo값이 나오도록 수정.
- 미사용 hook 제거.## v3.0.2
- React.memo를 이용하여 랜더링 최적화.
- Portals를 이용한 Modal창 생성.## v3.1.0
- 서버와 통신(https://github.com/Ahn-GiHwan/todolist_express).
- Skeleton UI로 로딩 중 일때 화면 출력.
- 무한 클릭 방지.
- contextAPI, Modal의 위치를 변경하여 랜더링 최적화.## v3.2.0
- responsive web (todo가 넘치면 '...'으로 표시).
- 10초마다 todos 업데이트 가능하게 함.