https://github.com/toss/react-simplikit
A lightweight yet powerful library that provides various useful tools in React environments.
https://github.com/toss/react-simplikit
components hooks react utilities
Last synced: 8 months ago
JSON representation
A lightweight yet powerful library that provides various useful tools in React environments.
- Host: GitHub
- URL: https://github.com/toss/react-simplikit
- Owner: toss
- License: mit
- Created: 2024-12-13T09:56:24.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-09-01T00:12:57.000Z (9 months ago)
- Last Synced: 2025-10-02T02:25:47.110Z (8 months ago)
- Topics: components, hooks, react, utilities
- Language: TypeScript
- Homepage: https://react-simplikit.slash.page/
- Size: 130 MB
- Stars: 272
- Watchers: 4
- Forks: 54
- Open Issues: 33
-
Metadata Files:
- Readme: README-ko_kr.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README

# react-simplikit · [](https://github.com/toss/slash/blob/main/LICENSE) [](https://codecov.io/gh/toss/react-simplikit)
[English](./README.md) | 한국어
`react-simplikit`은 React 환경에서 유용하게 사용할 수 있는 다양한 유틸리티를 제공하는 가볍고 강력한 라이브러리예요.
- `react-simplikit`은 의존성이 없어서 매우 가벼워요.
- `react-simplikit`은 100% 테스트 커버리지를 통해 신뢰성을 보장해요.
- `react-simplikit`은 JSDoc과 풍부한 문서, 예제를 제공해서 어떤 개발자도 쉽게 사용할 수 있어요.
## 예시
```tsx
import { useBooleanState } from 'react-simplikit';
function Component() {
// `useBooleanState` 훅을 사용해 상태를 관리해요.
const [open, openBottomSheet, closeBottomSheet, toggleBottomSheet] =
useBooleanState(false);
return (
Bottom Sheet 상태: {open ? '열림' : '닫힘'}
열기
닫기
토글
);
}
```
## 기여하기
커뮤니티에 있는 모든 분들에게 기여를 환영해요. 아래에 작성되어 있는 기여 가이드를 확인하세요.
[CONTRIBUTING](./src/docs/ko/contributing.md)
## 라이선스
MIT © Viva Republica, Inc. 자세한 내용은 [LICENSE](./LICENSE)를 참고하세요.