├── .github ├── CODE_OF_CONDUCT.md ├── ISSUE_TEMPLATE │ ├── 01_suggest-project.md │ ├── 02_update-project.md │ ├── 03_update-category.md │ ├── 04_change-configuration.md │ └── 05_anything-else.md ├── PULL_REQUEST_TEMPLATE.md ├── labels.yml └── workflows │ └── update-best-of-list.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── config ├── footer.md └── header.md ├── history ├── 2021-02-21_changes.md ├── 2021-02-21_projects.csv ├── 2021-02-25_changes.md ├── 2021-02-25_projects.csv ├── 2021-03-04_changes.md ├── 2021-03-04_projects.csv ├── 2021-03-11_changes.md ├── 2021-03-11_projects.csv ├── 2021-03-18_changes.md ├── 2021-03-18_projects.csv ├── 2021-03-25_changes.md ├── 2021-03-25_projects.csv ├── 2021-04-01_changes.md ├── 2021-04-01_projects.csv ├── 2021-04-08_changes.md ├── 2021-04-08_projects.csv ├── 2021-04-15_changes.md ├── 2021-04-15_projects.csv ├── 2021-04-22_changes.md ├── 2021-04-22_projects.csv ├── 2021-04-29_changes.md ├── 2021-04-29_projects.csv ├── 2021-05-13_changes.md ├── 2021-05-13_projects.csv ├── 2021-06-03_changes.md ├── 2021-06-03_projects.csv ├── 2021-06-24_changes.md ├── 2021-06-24_projects.csv ├── 2021-07-01_changes.md ├── 2021-07-01_projects.csv ├── 2021-07-09_changes.md ├── 2021-07-09_projects.csv ├── 2021-07-15_changes.md ├── 2021-07-15_projects.csv ├── 2021-07-29_changes.md ├── 2021-07-29_projects.csv ├── 2021-08-26_changes.md ├── 2021-08-26_projects.csv ├── 2021-11-17_changes.md ├── 2021-11-17_projects.csv ├── 2021-11-18_changes.md ├── 2021-11-18_projects.csv ├── 2021-11-25_changes.md ├── 2021-11-25_projects.csv ├── 2021-12-02_changes.md ├── 2021-12-02_projects.csv ├── 2021-12-09_changes.md ├── 2021-12-09_projects.csv ├── 2021-12-16_changes.md ├── 2021-12-16_projects.csv ├── 2021-12-23_changes.md ├── 2021-12-23_projects.csv ├── 2021-12-30_changes.md ├── 2021-12-30_projects.csv ├── 2022-01-06_changes.md ├── 2022-01-06_projects.csv ├── 2022-01-09_changes.md ├── 2022-01-09_projects.csv ├── 2022-01-11_changes.md ├── 2022-01-11_projects.csv ├── 2022-01-13_changes.md ├── 2022-01-13_projects.csv ├── 2022-01-17_changes.md ├── 2022-01-17_projects.csv ├── 2022-01-20_changes.md ├── 2022-01-20_projects.csv ├── 2022-01-27_changes.md ├── 2022-01-27_projects.csv ├── 2022-02-10_changes.md ├── 2022-02-10_projects.csv ├── 2022-02-17_changes.md ├── 2022-02-17_projects.csv ├── 2022-03-03_changes.md ├── 2022-03-03_projects.csv ├── 2022-03-10_changes.md ├── 2022-03-10_projects.csv ├── 2022-03-31_changes.md ├── 2022-03-31_projects.csv ├── 2022-04-14_changes.md ├── 2022-04-14_projects.csv ├── 2022-04-21_changes.md ├── 2022-04-21_projects.csv ├── 2022-04-28_changes.md ├── 2022-04-28_projects.csv ├── 2022-05-05_changes.md ├── 2022-05-05_projects.csv ├── 2022-05-12_changes.md ├── 2022-05-12_projects.csv ├── 2022-05-19_changes.md ├── 2022-05-19_projects.csv ├── 2022-05-26_changes.md ├── 2022-05-26_projects.csv ├── 2022-06-02_changes.md ├── 2022-06-02_projects.csv ├── 2022-06-09_changes.md ├── 2022-06-09_projects.csv ├── 2022-06-16_changes.md ├── 2022-06-16_projects.csv ├── 2022-06-23_changes.md ├── 2022-06-23_projects.csv ├── 2022-06-30_changes.md ├── 2022-06-30_projects.csv ├── 2022-07-07_changes.md ├── 2022-07-07_projects.csv ├── 2022-07-14_changes.md ├── 2022-07-14_projects.csv ├── 2022-07-21_changes.md ├── 2022-07-21_projects.csv ├── 2022-07-28_changes.md ├── 2022-07-28_projects.csv ├── 2022-08-04_changes.md ├── 2022-08-04_projects.csv ├── 2022-08-11_changes.md ├── 2022-08-11_projects.csv ├── 2022-08-18_changes.md ├── 2022-08-18_projects.csv ├── 2022-08-25_changes.md ├── 2022-08-25_projects.csv ├── 2022-09-01_changes.md ├── 2022-09-01_projects.csv ├── 2022-09-08_changes.md ├── 2022-09-08_projects.csv ├── 2022-09-15_changes.md ├── 2022-09-15_projects.csv ├── 2022-09-22_changes.md ├── 2022-09-22_projects.csv ├── 2022-09-29_changes.md ├── 2022-09-29_projects.csv ├── 2022-10-06_changes.md ├── 2022-10-06_projects.csv ├── 2022-10-13_changes.md ├── 2022-10-13_projects.csv ├── 2022-10-20_changes.md ├── 2022-10-20_projects.csv ├── 2022-10-27_changes.md ├── 2022-10-27_projects.csv ├── 2022-11-03_changes.md ├── 2022-11-03_projects.csv ├── 2022-11-10_changes.md ├── 2022-11-10_projects.csv ├── 2022-11-17_changes.md ├── 2022-11-17_projects.csv ├── 2022-11-24_changes.md ├── 2022-11-24_projects.csv ├── 2022-12-01_changes.md ├── 2022-12-01_projects.csv ├── 2022-12-08_changes.md ├── 2022-12-08_projects.csv ├── 2022-12-15_changes.md ├── 2022-12-15_projects.csv ├── 2022-12-29_changes.md ├── 2022-12-29_projects.csv ├── 2023-01-05_changes.md ├── 2023-01-05_projects.csv ├── 2023-01-12_changes.md ├── 2023-01-12_projects.csv ├── 2023-01-19_changes.md ├── 2023-01-19_projects.csv ├── 2023-01-26_changes.md ├── 2023-01-26_projects.csv ├── 2023-02-02_changes.md ├── 2023-02-02_projects.csv ├── 2023-02-09_changes.md ├── 2023-02-09_projects.csv ├── 2023-02-16_changes.md ├── 2023-02-16_projects.csv ├── 2023-02-23_changes.md ├── 2023-02-23_projects.csv ├── 2023-03-02_changes.md ├── 2023-03-02_projects.csv ├── 2023-03-09_changes.md ├── 2023-03-09_projects.csv ├── 2023-03-16_changes.md ├── 2023-03-16_projects.csv ├── 2023-03-23_changes.md ├── 2023-03-23_projects.csv ├── 2023-03-30_changes.md ├── 2023-03-30_projects.csv ├── 2023-04-06_changes.md ├── 2023-04-06_projects.csv ├── 2023-04-13_changes.md ├── 2023-04-13_projects.csv ├── 2023-04-20_changes.md ├── 2023-04-20_projects.csv ├── 2023-04-27_changes.md ├── 2023-04-27_projects.csv ├── 2023-05-04_changes.md ├── 2023-05-04_projects.csv ├── 2023-05-11_changes.md ├── 2023-05-11_projects.csv ├── 2023-05-18_changes.md ├── 2023-05-18_projects.csv ├── 2023-05-25_changes.md ├── 2023-05-25_projects.csv ├── 2023-06-08_changes.md ├── 2023-06-08_projects.csv ├── 2023-06-15_changes.md ├── 2023-06-15_projects.csv ├── 2023-06-22_changes.md ├── 2023-06-22_projects.csv ├── 2023-06-29_changes.md ├── 2023-06-29_projects.csv ├── 2023-07-06_changes.md ├── 2023-07-06_projects.csv ├── 2023-07-13_changes.md ├── 2023-07-13_projects.csv ├── 2023-07-20_changes.md ├── 2023-07-20_projects.csv ├── 2023-07-27_changes.md ├── 2023-07-27_projects.csv ├── 2023-08-03_changes.md ├── 2023-08-03_projects.csv ├── 2023-08-10_changes.md ├── 2023-08-10_projects.csv ├── 2023-08-17_changes.md ├── 2023-08-17_projects.csv ├── 2023-08-24_changes.md ├── 2023-08-24_projects.csv ├── 2023-08-31_changes.md ├── 2023-08-31_projects.csv ├── 2023-09-07_changes.md ├── 2023-09-07_projects.csv ├── 2023-09-14_changes.md ├── 2023-09-14_projects.csv ├── 2023-09-21_changes.md ├── 2023-09-21_projects.csv ├── 2023-09-28_changes.md ├── 2023-09-28_projects.csv ├── 2023-10-05_changes.md ├── 2023-10-05_projects.csv ├── 2023-10-12_changes.md ├── 2023-10-12_projects.csv ├── 2023-10-19_changes.md ├── 2023-10-19_projects.csv ├── 2023-10-26_changes.md ├── 2023-10-26_projects.csv ├── 2023-11-02_changes.md ├── 2023-11-02_projects.csv ├── 2023-11-09_changes.md ├── 2023-11-09_projects.csv ├── 2023-11-16_changes.md ├── 2023-11-16_projects.csv ├── 2023-11-23_changes.md ├── 2023-11-23_projects.csv ├── 2023-11-30_changes.md ├── 2023-11-30_projects.csv ├── 2023-12-07_changes.md ├── 2023-12-07_projects.csv ├── 2023-12-14_changes.md ├── 2023-12-14_projects.csv ├── 2023-12-21_changes.md ├── 2023-12-21_projects.csv ├── 2023-12-28_changes.md ├── 2023-12-28_projects.csv ├── 2024-01-04_changes.md ├── 2024-01-04_projects.csv ├── 2024-01-11_changes.md ├── 2024-01-11_projects.csv ├── 2024-01-18_changes.md ├── 2024-01-18_projects.csv ├── 2024-01-25_changes.md ├── 2024-01-25_projects.csv ├── 2024-02-01_changes.md ├── 2024-02-01_projects.csv ├── 2024-02-08_changes.md ├── 2024-02-08_projects.csv ├── 2024-02-15_changes.md ├── 2024-02-15_projects.csv ├── 2024-02-22_changes.md ├── 2024-02-22_projects.csv ├── 2024-02-29_changes.md ├── 2024-02-29_projects.csv ├── 2024-03-07_changes.md ├── 2024-03-07_projects.csv ├── 2024-03-14_changes.md ├── 2024-03-14_projects.csv ├── 2024-03-21_changes.md ├── 2024-03-21_projects.csv ├── 2024-03-28_changes.md ├── 2024-03-28_projects.csv ├── 2024-04-04_changes.md ├── 2024-04-04_projects.csv ├── 2024-04-11_changes.md ├── 2024-04-11_projects.csv ├── 2024-04-18_changes.md ├── 2024-04-18_projects.csv ├── 2024-05-02_changes.md ├── 2024-05-02_projects.csv ├── 2024-05-09_changes.md ├── 2024-05-09_projects.csv ├── 2024-05-16_changes.md ├── 2024-05-16_projects.csv ├── 2024-05-23_changes.md ├── 2024-05-23_projects.csv ├── 2024-05-30_changes.md ├── 2024-05-30_projects.csv ├── 2024-06-06_changes.md └── 2024-06-06_projects.csv ├── latest-changes.md └── projects.yaml /.github/ISSUE_TEMPLATE/01_suggest-project.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "📦 Suggest a project" 3 | about: "Do you like to suggest a project that hasn't been added to this best-of list yet?" 4 | title: 'Add project: ' 5 | labels: 'add-project' 6 | assignees: '' 7 | 8 | --- 9 | 10 | 13 | 14 | **Project details:** 15 | 16 | 17 | - Project Name: 18 | - Github URL: 19 | - Category: 20 | - License: 21 | - Package Managers: 22 | 23 | **Additional context:** 24 | 25 | 26 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/02_update-project.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "✏️ Update a project" 3 | about: Do you have changes for a project, e.g. missing package manager, wrong license or category? 4 | title: 'Update project: ' 5 | labels: 'update-project' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Update details:** 11 | 12 | 15 | 16 | - Project Name: 17 | 18 | 19 | 20 | **Additional context:** 21 | 22 | 23 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/03_update-category.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "🏷 Add or update a category" 3 | about: Do you like to suggest a new project category or update an existing one? 4 | title: '' 5 | labels: 'category' 6 | assignees: '' 7 | 8 | --- 9 | 10 | 13 | 14 | - [ ] Add category 15 | - [ ] Update category: 16 | 17 | **Category details:** 18 | 19 | 22 | 23 | - Category Title: 24 | - Category Subtitle: 25 | 26 | **Additional context:** 27 | 28 | 29 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/04_change-configuration.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "⚙️ Change configuration" 3 | about: Do you have a suggestion for changing the configuration, e.g. allow additional licenses or adjust minimal stars? 4 | title: '' 5 | labels: 'configuration' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Configuration Change:** 11 | 12 | 13 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/05_anything-else.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "\U0001F4AC Anything else?" 3 | about: For questions or suggestions regarding the metadata collection or markdown generation, please refer to the best-of-lists/best-of-generator repository. 4 | title: '' 5 | labels: 'question' 6 | assignees: '' 7 | 8 | --- 9 | 10 | 13 | 14 | **Describe the issue:** 15 | 16 | 17 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | **What kind of change does this PR introduce?** 2 | 3 | 4 | - [ ] Add a project 5 | - [ ] Update a project 6 | - [ ] Remove a project 7 | - [ ] Add or update a category 8 | - [ ] Change configuration 9 | - [ ] Documentation 10 | - [ ] Other, please describe: 11 | 12 | **Description:** 13 | 14 | 15 | **Checklist:** 16 | 18 | 19 | - [ ] I have read the [CONTRIBUTING](https://github.com/best-of-lists/best-of/blob/main/CONTRIBUTING.md) guidelines. 20 | - [ ] I have not modified the `README.md` file. Projects are only supposed to be added or updated within the `projects.yaml` file since the `README.md` file is automatically generated. 21 | -------------------------------------------------------------------------------- /.github/labels.yml: -------------------------------------------------------------------------------- 1 | - name: add-project 2 | color: a2eeef 3 | description: "Add new project to best-of list" 4 | - name: update-project 5 | color: a2eeef 6 | description: "Update a project on the best-of list" 7 | - name: category 8 | color: a2eeef 9 | description: "Add or update a category to the best-of list" 10 | - name: configuration 11 | color: a2eeef 12 | description: "Issue refers to the best-of list configuration" 13 | - name: generation 14 | color: a2eeef 15 | description: "Issue refers to the best-of markdown generation" 16 | - name: collection 17 | color: a2eeef 18 | description: "Issue refers to the project metadata collection" 19 | - name: question 20 | color: a2eeef 21 | description: "Further information is requested" 22 | - name: documentation 23 | color: a2eeef 24 | description: "Changes to documentation" 25 | - name: bug 26 | color: d73a4a 27 | description: "Something isn't working" 28 | - name: "good first issue" 29 | color: 98FF98 30 | description: "Good for newcomers" 31 | - name: "help wanted" 32 | color: 98FF98 33 | description: "Extra attention is needed" 34 | - name: invalid 35 | color: cfd3d7 36 | description: "This doesn't seem right" 37 | - name: duplicate 38 | color: cfd3d7 39 | description: "This issue or pull request already exists" 40 | - name: "further input needed" 41 | color: cfd3d7 42 | description: "Not enough detail is provided by the creator" 43 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # IntelliJ 2 | target/ 3 | .idea/ 4 | *.iml 5 | 6 | # Sublime 7 | *.sublime-workspace 8 | 9 | # Eclipse 10 | .settings 11 | 12 | # VS Code 13 | .project 14 | .classpath 15 | .vscode/* 16 | # Ignore all local history of files 17 | **/.history 18 | 19 | # Java 20 | *.class 21 | target/ 22 | 23 | # C 24 | *.so 25 | 26 | # Python 27 | *.pyc 28 | *.egg-info 29 | __pycache__ 30 | .ipynb_checkpoints 31 | .Python 32 | dist/ 33 | .python-version 34 | .installed.cfg 35 | *.egg 36 | reqlib-metadata 37 | .mypy_cache/ 38 | .venv 39 | venv/ 40 | build/ 41 | 42 | # Byte-compiled / optimized / DLL files 43 | *.pyc 44 | __pycache__/ 45 | *.py[cod] 46 | *$py.class 47 | 48 | # Unit test / coverage reports 49 | htmlcov/ 50 | .tox/ 51 | .nox/ 52 | .coverage 53 | .coverage.* 54 | .cache 55 | nosetests.xml 56 | coverage.xml 57 | *,cover 58 | .hypothesis/ 59 | .pytest_cache/ 60 | 61 | # NPM / Node / JavaScript 62 | .npm 63 | node_modules/ 64 | jspm_packages/ 65 | 66 | # Runtime data 67 | pids 68 | *.pid 69 | *.seed 70 | *.pid.lock 71 | 72 | # Logs 73 | logs 74 | *.log 75 | npm-debug.log* 76 | yarn-debug.log* 77 | yarn-error.log* 78 | lerna-debug.log* 79 | 80 | # vim temporary files 81 | *~ 82 | .*.sw? 83 | 84 | # Other Artifacts 85 | hs_err_pid* 86 | *.log 87 | *.swp 88 | *.swo 89 | temp/* 90 | .DS_Store 91 | 92 | -------------------------------------------------------------------------------- /config/footer.md: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | 4 | ## Related Resources 5 | 6 | - [**Best-of lists**](https://best-of.org): Discover other best-of lists with awesome open-source projects on all kinds of topics. 7 | - [**Front-End-Checklist**](https://github.com/thedaviddias/Front-End-Checklist): The perfect Front-End Checklist for modern websites and meticulous developers. 8 | - [**Awesome React**](https://github.com/enaqx/awesome-react): A collection of awesome things regarding React ecosystem. 9 | 10 | ## Contribution 11 | 12 | Contributions are encouraged and always welcome! If you like to add or update projects, choose one of the following ways: 13 | 14 | - Open an issue by selecting one of the provided categories from the [issue page](https://github.com/LukasMasuch/best-of-react/issues/new/choose) and fill in the requested information. 15 | - Modify the [projects.yaml](https://github.com/LukasMasuch/best-of-react/blob/main/projects.yaml) with your additions or changes, and submit a pull request. This can also be done directly via the [Github UI](https://github.com/LukasMasuch/best-of-react/edit/main/projects.yaml). 16 | 17 | If you like to contribute to or share suggestions regarding the project metadata collection or markdown generation, please refer to the [best-of-generator](https://github.com/best-of-lists/best-of-generator) repository. If you like to create your own best-of list, we recommend to follow [this guide](https://github.com/best-of-lists/best-of/blob/main/create-best-of-list.md). 18 | 19 | For more information on how to add or update projects, please read the [contribution guidelines](https://github.com/LukasMasuch/best-of-react/blob/main/CONTRIBUTING.md). By participating in this project, you agree to abide by its [Code of Conduct](https://github.com/LukasMasuch/best-of-react/blob/main/.github/CODE_OF_CONDUCT.md). 20 | 21 | ## License 22 | 23 | [](https://creativecommons.org/licenses/by-sa/4.0/) 24 | -------------------------------------------------------------------------------- /config/header.md: -------------------------------------------------------------------------------- 1 | 2 |
8 | 🏆 A ranked list of awesome React open-source libraries and tools. Updated weekly. 9 |
10 | 11 | 17 | 18 | This curated list contains {project_count} awesome open-source projects with a total of {stars_count} stars grouped into {category_count} categories. All projects are ranked by a project-quality score, which is calculated based on various metrics automatically collected from GitHub and different package managers. If you like to add or update projects, feel free to open an [issue](https://github.com/LukasMasuch/best-of-react/issues/new/choose), submit a [pull request](https://github.com/LukasMasuch/best-of-react/pulls), or directly edit the [projects.yaml](https://github.com/LukasMasuch/best-of-react/edit/main/projects.yaml). Contributions are very welcome! 19 | 20 | > 🧙♂️ Discover other [best-of lists](https://best-of.org) or [create your own](https://github.com/best-of-lists/best-of/blob/main/create-best-of-list.md). 21 | -------------------------------------------------------------------------------- /history/2021-02-25_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - react-virtualized (🥈28 · ⭐ 21K · 💀) - React components for efficiently rendering large,..MIT
6 | - Material-UI Treasury (🥉25 · ⭐ 1.4K · 📈) - A collection of ready-to-use components based on.. MIT

7 | - React Spreadsheet (🥉24 · ⭐ 380 · 📈) - Simple, customizable yet performant spreadsheet for React. MIT
8 |
9 |
--------------------------------------------------------------------------------
/history/2021-03-04_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - React Flow (🥉26 · ⭐ 2.6K · 📈) - Highly customizable library for building interactive node-based.. MIT
6 | - react-pivottable (🥉25 · ⭐ 720 · 📈) - React-based drag'n'drop pivot table with Plotly.js charts. MIT
7 | - Remotion (🥇18 · ⭐ 6.2K · 📈) - Create videos programmatically in React. ❗Unlicensed
8 | - Notus React (🥉13 · ⭐ 160 · 🐣) - Notus React: Free Tailwind CSS UI Kit and Admin. MIT
9 |
10 | ## 📉 Trending Down
11 |
12 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
13 |
14 | - Gatsby (🥇39 · ⭐ 49K · 📉) - Build blazing fast, modern apps and websites with React. MIT
15 | - Evergreen (🥉28 · ⭐ 11K · 📉) - Evergreen React UI Framework by Segment. MIT
16 | - material-ui-dropzone (🥉26 · ⭐ 320 · 📉) - A Material-UI file upload dropzone. MIT

17 | - Viser (🥉24 · ⭐ 1.4K · 💤) - viser is a toolkit fit for data vis engineer. https://viserjs.gitee.io/. MIT
18 | - React FilePond (🥉24 · ⭐ 1K · 📉) - A handy FilePond adapter component for React. MIT
19 |
20 |
--------------------------------------------------------------------------------
/history/2021-03-11_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - Gatsby (🥇40 · ⭐ 49K · 📈) - Build blazing fast, modern apps and websites with React. MIT
6 | - Viser (🥉25 · ⭐ 1.4K · 💤) - viser is a toolkit fit for data vis engineer. https://viserjs.gitee.io/. MIT
7 | - React Flow Chart (🥉24 · ⭐ 1K · 💤) - A flexible, stateless, declarative flow chart library for.. MIT
8 | - React Lazylog (🥉24 · ⭐ 180 · 💤) - React Lazy Logviewer. MPL-2.0
9 | - ReactPivot (🥉21 · ⭐ 980 · 💤) - React-Pivot is a data-grid component with pivot-table-like.. MIT
10 |
11 |
--------------------------------------------------------------------------------
/history/2021-03-18_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - Draft JS (🥇36 · ⭐ 20K · 📈) - A React framework for building text editors. MIT
6 | - React Suite (🥉30 · ⭐ 5.3K · 📈) - A suite of React components . MIT
7 | - Viser (🥉26 · ⭐ 1.4K · 💤) - viser is a toolkit fit for data vis engineer. https://viserjs.gitee.io/. MIT
8 | - rsuite-table (🥉26 · ⭐ 370 · 📈) - A React table component. MIT
9 | - React Hot Toast (🥉23 · ⭐ 2.5K · 🐣) - Smoking hot React Notifications. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - Gatsby (🥇39 · ⭐ 49K · 📉) - Build blazing fast, modern apps and websites with React. MIT
16 | - Notus React (🥉11 · ⭐ 170 · 🐣) - Notus React: Free Tailwind CSS UI Kit and Admin. MIT
17 |
18 |
--------------------------------------------------------------------------------
/history/2021-03-25_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - Gatsby (🥇40 · ⭐ 50K · 📈) - Build blazing fast, modern apps and websites with React. MIT
6 | - React Chartjs 2 (🥇33 · ⭐ 3.8K · 📈) - React wrapper for Chart.js. MIT
7 | - Monaco Yaml (🥉22 · ⭐ 67 · 📈) - YAML plugin for the Monaco Editor. MIT
8 | - Notus React (🥉13 · ⭐ 190 · 🐣) - Notus React: Free Tailwind CSS UI Kit and Admin. MIT
9 |
10 |
--------------------------------------------------------------------------------
/history/2021-04-01_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - Storybook (🥈40 · ⭐ 60K · 📈) - The UI component explorer. Develop, document, & test React, Vue,.. MIT
6 | - reactdatagrid (🥉15 · ⭐ 140 · 🐣) - Empower Your Data with the best React Data Grid there is. MIT
7 |
8 | ## 📉 Trending Down
9 |
10 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
11 |
12 | - Slate (🥈33 · ⭐ 20K · 📉) - A completely customizable framework for building rich text editors... MIT
13 | - material-ui-chip-input (🥈27 · ⭐ 690 · 💤) - A chip input field using Material-UI. MIT

14 | - React Email Editor (🥉24 · ⭐ 2.7K · 📉) - Drag-n-Drop Email Editor Component for React.js. MIT
15 | - React Spreadsheet (🥉23 · ⭐ 400 · 📉) - Simple, customizable yet performant spreadsheet for React. MIT
16 | - Monaco Yaml (🥉21 · ⭐ 67 · 📉) - YAML plugin for the Monaco Editor. MIT
17 |
18 |
--------------------------------------------------------------------------------
/history/2021-04-08_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - Gatsby (🥇41 · ⭐ 50K · 📈) - Build blazing fast, modern apps and websites with React. MIT
6 | - Storybook Addon Material-UI (🥉26 · ⭐ 520 · 📈) - Addon for storybook wich wrap material-ui components.. MIT

7 | - reactdatagrid (🥉16 · ⭐ 150 · 🐣) - Empower Your Data with the best React Data Grid there is. MIT
8 | - React Ansi (🥉16 · ⭐ 16 · 📈) - A foldable and searchable ansi log viewer for React. MIT
9 |
10 | ## 📉 Trending Down
11 |
12 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
13 |
14 | - emotion (🥉30 · ⭐ 13K · 📉) - CSS-in-JS library designed for high performance style composition. MIT
15 |
16 |
--------------------------------------------------------------------------------
/history/2021-04-15_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - material-ui-chip-input (🥇28 · ⭐ 700 · 💤) - A chip input field using Material-UI. MIT

6 | - Tauri (🥉22 · ⭐ 15K · 📈) - Build smaller, faster, and more secure desktop applications with a web.. MIT
7 | - React-Data-Export (🥉21 · ⭐ 140 · 💀) - Export dataset in react. MIT
8 |
9 | ## 📉 Trending Down
10 |
11 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
12 |
13 | - Gatsby (🥇40 · ⭐ 50K · 📉) - Build blazing fast, modern apps and websites with React. MIT
14 | - Reaviz (🥉23 · ⭐ 1.1K · 📉) - Data visualization library for React based on D3. Apache-2
15 |
16 |
--------------------------------------------------------------------------------
/history/2021-04-22_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - Gatsby (🥇41 · ⭐ 50K · 📈) - Build blazing fast, modern apps and websites with React. MIT
6 | - material-table (🥇33 · ⭐ 3K · 📈) - Datatable for React based on material-ui's table with.. MIT

7 | - Monaco React (🥉27 · ⭐ 880 · 📈) - Monaco Editor for React - use the monaco-editor in any React.. MIT
8 | - Reaviz (🥉24 · ⭐ 1.1K · 📈) - Data visualization library for React based on D3. Apache-2
9 | - reactdatagrid (🥉17 · ⭐ 150 · 🐣) - Empower Your Data with the best React Data Grid there is. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - Styled Components (🥉36 · ⭐ 33K · 📉) - Visual primitives for the component age. Use the best.. MIT
16 | - Ant Design (🥈33 · ⭐ 5.7K · 📉) - A UI Design Language and React UI library. MIT

17 | - Viser (🥉25 · ⭐ 1.5K · 💤) - viser is a toolkit fit for data vis engineer. https://viserjs.gitee.io/. MIT
18 |
19 |
--------------------------------------------------------------------------------
/history/2021-04-29_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - Ant Design (🥈39 · ⭐ 6.3K · 📈) - A UI Design Language and React UI library. MIT

6 | - visx (🥉29 · ⭐ 13K · 📈) - visx | visualization components. MIT
7 |
8 | ## 📉 Trending Down
9 |
10 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
11 |
12 | - Gatsby (🥇40 · ⭐ 50K · 📉) - Build blazing fast, modern apps and websites with React. MIT
13 | - Reaviz (🥉23 · ⭐ 1.1K · 📉) - Data visualization library for React based on D3. Apache-2
14 |
15 |
--------------------------------------------------------------------------------
/history/2021-06-24_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - React-Move (🥇29 · ⭐ 6.3K · 📈) - React Move | Beautiful, data-driven animations for React. MIT
6 | - react-virtualized (🥈27 · ⭐ 22K · 💀) - React components for efficiently rendering large,.. MIT
7 | - Bit (🥉27 · ⭐ 14K · 📈) - Build, distribute, and collaborate on components. Apache-2
8 | - React ApexCharts (🥉27 · ⭐ 760 · 📈) - React Component for ApexCharts. MIT
9 | - Viser (🥉26 · ⭐ 1.5K · 💤) - viser is a toolkit fit for data vis engineer. https://viserjs.gitee.io/. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - Gatsby (🥇40 · ⭐ 51K · 📉) - Build blazing fast, modern apps and websites with React. MIT
16 |
17 |
--------------------------------------------------------------------------------
/history/2021-07-01_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - Gatsby (🥇41 · ⭐ 51K · 📈) - Build blazing fast, modern apps and websites with React. MIT
6 | - react-json-view (🥈32 · ⭐ 2.1K · 📈) - JSON viewer for react. MIT
7 | - React Material Admin (🥉17 · ⭐ 1.1K · 📈) - React Material Admin is a React template built with.. MIT

8 |
9 | ## 📉 Trending Down
10 |
11 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
12 |
13 | - Webpack (🥈39 · ⭐ 59K · 📉) - A bundler for javascript and friends. Packs many modules into a few.. MIT
14 | - Semantic UI React (🥈36 · ⭐ 12K · 📉) - The official Semantic-UI-React integration. MIT
15 | - material-ui-chip-input (🥈27 · ⭐ 700 · 💤) - A chip input field using Material-UI. MIT

16 | - Storybook Addon Material-UI (🥉25 · ⭐ 530 · 📉) - Addon for storybook wich wrap material-ui components.. MIT

17 | - React-Data-Export (🥉21 · ⭐ 150 · 💀) - Export dataset in react. MIT
18 |
19 |
--------------------------------------------------------------------------------
/history/2021-07-15_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - Gatsby (🥇41 · ⭐ 51K · 📈) - Build blazing fast, modern apps and websites with React. MIT
6 | - Semantic-UI (🥈32 · ⭐ 49K · 💀) - Semantic is a UI component framework based around useful.. MIT
7 | - react-monaco-editor (🥈30 · ⭐ 2.3K · 📈) - Monaco Editor for React. MIT
8 | - Radix Primitives (🥉18 · ⭐ 1.1K · 📈) - An open-source UI component library for building high-.. MIT
9 | - orb (🥉17 · ⭐ 520 · 💤) - Pivot table javascript library. MIT
10 |
11 |
--------------------------------------------------------------------------------
/history/2021-07-29_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - react-query (🥇35 · ⭐ 22K · 📈) - Hooks for fetching, caching and updating asynchronous data in.. MIT
6 | - redux-toolkit (🥈31 · ⭐ 6K · 📈) - The official, opinionated, batteries-included toolset for.. MIT
7 | - React Suite (🥈31 · ⭐ 5.7K · 📈) - A suite of React components . MIT
8 | - react-avatar-editor (🥈30 · ⭐ 1.8K · 📈) - Small avatar & profile picture component. Resize and.. MIT
9 | - ncc (🥈29 · ⭐ 5.7K · 📈) - Compile a Node.js project into a single file. Supports TypeScript, binary.. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - react-slick (🥇36 · ⭐ 9.7K · 📉) - React carousel component. MIT
16 | - react-pivottable (🥉23 · ⭐ 770 · 💤) - React-based drag'n'drop pivot table with Plotly.js charts. MIT
17 | - React Flow (🥉22 · ⭐ 7.1K · 📉) - Highly customizable library for building interactive node-based.. MIT
18 |
19 |
--------------------------------------------------------------------------------
/history/2021-11-17_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - Material-UI (🥇43 · ⭐ 73K · 📈) - MUI (formerly Material-UI) is the React UI library you.. MIT

6 | - SheetJS (🥇37 · ⭐ 28K · 📈) - SheetJS Community Edition -- Spreadsheet Data Toolkit. Apache-2
7 | - react-query (🥇37 · ⭐ 24K · 📈) - Hooks for fetching, caching and updating asynchronous data in.. MIT
8 | - Semiotic (🥉27 · ⭐ 2.2K · 💤) - A data visualization framework combining React & D3. Apache-2
9 | - Drawflow (🥉24 · ⭐ 1.4K · 📈) - Simple flow library. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - jest (🥇39 · ⭐ 37K · 📉) - Delightful JavaScript Testing. MIT
16 | - Draft JS (🥇33 · ⭐ 21K · 📉) - A React framework for building text editors. MIT
17 | - umi (🥉33 · ⭐ 12K · 📉) - Pluggable enterprise-level react application framework. MIT
18 | - React Suite (🥉28 · ⭐ 6.3K · 📉) - A suite of React components . MIT
19 | - eui (🥉25 · ⭐ 3.2K · 📉) - Elastic UI Framework. ❗️ICU
20 |
21 |
--------------------------------------------------------------------------------
/history/2021-11-18_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - loglevel (🥉37 · ⭐ 2.1K · 📈) - Minimal lightweight logging for JavaScript, adding reliable log.. MIT
6 | - react-design-editor (🥉20 · ⭐ 860 · 📈) - React Design Editor has started to developed direct.. MIT
7 |
8 |
--------------------------------------------------------------------------------
/history/2021-11-25_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - react-diagrams (🥉27 · ⭐ 6.5K · 📈) - a super simple, no-nonsense diagramming library written in.. MIT
6 | - dnd-kit (🥉27 · ⭐ 3.3K · 📈) - A modern, lightweight, performant, accessible and extensible drag &.. MIT
7 | - Reaviz (🥉24 · ⭐ 500 · 📈) - Data visualization library for React. Apache-2
8 | - React Flow (🥉23 · ⭐ 8.1K · 📈) - Highly customizable library for building interactive node-based.. MIT
9 | - react-design-editor (🥉21 · ⭐ 860 · 📈) - React Design Editor has started to developed direct.. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - swr (🥈31 · ⭐ 20K · 📉) - React Hooks for data fetching. MIT
16 | - uppy (🥈29 · ⭐ 25K · 📉) - The next open source file uploader for web browsers. MIT
17 | - Tauri (🥉23 · ⭐ 25K · 📉) - Build smaller, faster, and more secure desktop applications with a web.. MIT
18 |
19 |
--------------------------------------------------------------------------------
/history/2021-12-02_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - Webpack (🥇40 · ⭐ 60K · 📈) - A bundler for javascript and friends. Packs many modules into a few.. MIT
6 | - theme-ui (🥈30 · ⭐ 4.1K · 📈) - Build consistent, themeable React apps based on constraint-based.. MIT
7 | - react-rte (🥈29 · ⭐ 2.6K · 📈) - Pure React rich text WYSIWYG editor based on draft-js. ISC
8 | - matx-react (🥉13 · ⭐ 640 · 📈) - Matx React Redux Material Design Admin Dashboard Template. MIT
9 |
10 | ## 📉 Trending Down
11 |
12 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
13 |
14 | - lodash (🥈41 · ⭐ 51K · 💤) - A modern JavaScript utility library delivering modularity, performance,.. MIT
15 | - bulma (🥈36 · ⭐ 45K · 📉) - Modern CSS framework based on Flexbox. MIT
16 | - Semantic-UI (🥈32 · ⭐ 50K · 💀) - Semantic is a UI component framework based around useful.. MIT
17 | - React-Move (🥇27 · ⭐ 6.4K · 📉) - React Move | Beautiful, data-driven animations for React. MIT
18 | - codejar (🥉20 · ⭐ 1K · 📉) - An embeddable code editor for the browser. MIT
19 |
20 |
--------------------------------------------------------------------------------
/history/2021-12-09_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - preact (🥇38 · ⭐ 30K · 📈) - Fast 3kB React alternative with the same modern API. Components &.. MIT
6 | - redux-toolkit (🥈33 · ⭐ 6.8K · 📈) - The official, opinionated, batteries-included toolset for.. MIT
7 | - react-avatar-editor (🥈30 · ⭐ 1.8K · 📈) - Small avatar & profile picture component. Resize and.. MIT
8 | - React Hot Toast (🥉27 · ⭐ 4.2K · 📈) - Smoking hot React Notifications. MIT
9 | - React Ansi (🥉17 · ⭐ 23 · 💤) - A foldable and searchable ansi log viewer for React. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - components (🥉25 · ⭐ 1.5K · 📉) - An implementation of GitHub's Primer Design System using React. MIT
16 | - Semiotic (🥉24 · ⭐ 2.2K · 📉) - A data visualization framework combining React & D3. Apache-2
17 | - tabler (🥉23 · ⭐ 25K · 📉) - Tabler is free and open-source HTML Dashboard UI Kit built on.. MIT

18 | - Reaviz (🥉23 · ⭐ 500 · 📉) - Data visualization library for React. Apache-2
19 |
20 |
--------------------------------------------------------------------------------
/history/2021-12-16_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - lodash (🥇42 · ⭐ 52K · 💤) - A modern JavaScript utility library delivering modularity, performance,.. MIT
6 | - Next.js (🥇41 · ⭐ 78K · 📈) - The React Framework. MIT
7 | - React-Toastify (🥇35 · ⭐ 8.1K · 📈) - React notification made easy !. MIT
8 | - emotion (🥉33 · ⭐ 14K · 📈) - CSS-in-JS library designed for high performance style composition. MIT
9 | - Monaco React (🥈29 · ⭐ 1.4K · 📈) - Monaco Editor for React - use the monaco-editor in any React.. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - fluentui (🥉29 · ⭐ 13K · 📉) - Fluent UI web represents a collection of utilities, React components,.. MIT
16 | - primereact (🥉29 · ⭐ 2.4K · 📉) - The Most Complete React UI Component Library. MIT
17 |
18 |
--------------------------------------------------------------------------------
/history/2021-12-23_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - Semantic-UI (🥈33 · ⭐ 50K · 💀) - Semantic is a UI component framework based around useful.. MIT
6 | - Evergreen (🥈30 · ⭐ 11K · 📈) - Evergreen React UI Framework by Segment. MIT
7 | - react-csv (🥈30 · ⭐ 850 · 📈) - React components to build CSV files on the fly basing on.. MIT
8 | - muuri (🥈29 · ⭐ 9.8K · 📈) - Infinite responsive, sortable, filterable and draggable layouts. MIT
9 | - fullcalendar-react (🥈28 · ⭐ 1.1K · 📈) - An official React component for FullCalendar. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - react-file-viewer (🥉24 · ⭐ 340 · 💀) - Extendable file viewer for web. MIT
16 | - Semiotic (🥉23 · ⭐ 2.2K · 📉) - A data visualization framework combining React & D3. Apache-2
17 | - RevoGrid (🥉23 · ⭐ 1.9K · 📉) - Powerful virtual data grid smartsheet with advanced customization... MIT
18 |
19 |
--------------------------------------------------------------------------------
/history/2021-12-30_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - sql.js (🥈31 · ⭐ 9.6K · 📈) - A javascript library to run SQLite on the web. MIT
6 | - primereact (🥈31 · ⭐ 2.4K · 📈) - The Most Complete React UI Component Library. MIT
7 | - Material-UI Theme Creator (🥉9 · ⭐ 150 · 💀) - A tool to help design and customize themes for the.. ❗️0BSD

8 |
9 | ## 📉 Trending Down
10 |
11 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
12 |
13 | - lodash (🥈41 · ⭐ 52K · 💤) - A modern JavaScript utility library delivering modularity, performance,.. MIT
14 | - react-slick (🥇35 · ⭐ 10K · 📉) - React carousel component. MIT
15 | - visx (🥈29 · ⭐ 15K · 📉) - visx | visualization components. MIT
16 | - theme-ui (🥉29 · ⭐ 4.2K · 📉) - Build consistent, themeable React apps based on constraint-based.. MIT
17 | - loglevel (🥉29 · ⭐ 2.1K · 📉) - Minimal lightweight logging for JavaScript, adding reliable log.. MIT
18 |
19 |
--------------------------------------------------------------------------------
/history/2022-01-06_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - loglevel (🥉37 · ⭐ 2.1K · 📈) - Minimal lightweight logging for JavaScript, adding reliable log.. MIT
6 | - Monaco React (🥈29 · ⭐ 1.5K · 📈) - Monaco Editor for React - use the monaco-editor in any React.. MIT
7 | - react-digraph (🥉27 · ⭐ 2.2K · 📈) - A library for creating directed graph editors. MIT
8 | - Unstated Next (🥉25 · ⭐ 3.8K · 💀) - 200 bytes to never think about React state management.. MIT
9 | - Reaviz (🥉24 · ⭐ 520 · 📈) - Data visualization library for React. Apache-2
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - react-virtualized (🥇35 · ⭐ 23K · 💤) - React components for efficiently rendering large lists.. MIT
16 | - react-table (🥇35 · ⭐ 16K · 📉) - Hooks for building fast and extendable tables and datagrids for.. MIT
17 | - React-Toastify (🥇34 · ⭐ 8.2K · 📉) - React notification made easy !. MIT
18 | - Rebass (🥉29 · ⭐ 7.6K · 📉) - React primitive UI components built with styled-system. MIT
19 | - muuri (🥉27 · ⭐ 9.8K · 📉) - Infinite responsive, sortable, filterable and draggable layouts. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2022-01-09_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - Slate (🥇33 · ⭐ 23K · 📈) - A completely customizable framework for building rich text editors... MIT
6 | - react-vis (🥈28 · ⭐ 8.1K · 💀) - Data Visualization Components. MIT
7 |
8 | ## 📉 Trending Down
9 |
10 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
11 |
12 | - react-query (🥇36 · ⭐ 25K · 📉) - Hooks for fetching, caching and updating asynchronous data in.. MIT
13 | - material-table (🥈32 · ⭐ 3.2K · 💤) - Datatable for React based on material-ui's table with.. MIT

14 | - Evergreen (🥈29 · ⭐ 11K · 📉) - Evergreen React UI Framework by Segment. MIT
15 |
16 |
--------------------------------------------------------------------------------
/history/2022-02-10_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - react-spring (🥇41 · ⭐ 22K · 📈) - A spring physics based React animation library. MIT
6 | - React-Toastify (🥇39 · ⭐ 8.4K · 📈) - React notification made easy !. MIT
7 | - react-tooltip (🥈34 · ⭐ 2.7K · 📈) - react tooltip component. MIT
8 | - aframe (🥉30 · ⭐ 14K · 💀) - Building Blocks for the VR Web. MIT
9 | - react-diagrams (🥉30 · ⭐ 6.7K · 📈) - a super simple, no-nonsense diagramming library written in.. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - SheetJS (🥇40 · ⭐ 29K · 📉) - SheetJS Community Edition -- Spreadsheet Data Toolkit. Apache-2
16 | - visx (🥈34 · ⭐ 15K · 📉) - visx | visualization components. MIT
17 | - react-draggable (🥈33 · ⭐ 7.3K · 📉) - React draggable component. MIT
18 | - react-syntax-highlighter (🥈33 · ⭐ 2.5K · 📉) - syntax highlighting component for react with prismjs.. MIT
19 | - unstorage (🥉22 · ⭐ 480 · 📉) - Universal Storage Layer. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2022-02-17_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - jest (🥇49 · ⭐ 38K · 📈) - Delightful JavaScript Testing. MIT
6 | - cypress (🥈47 · ⭐ 37K · 📈) - Fast, easy and reliable testing for anything that runs in a browser. MIT
7 | - tsparticles (🥈36 · ⭐ 2.9K · 📈) - tsParticles - Easily create highly customizable particles.. MIT
8 | - reakit (🥈35 · ⭐ 5.5K · 📈) - Toolkit for building accessible web apps with React. MIT
9 | - restful-react (🥉28 · ⭐ 1.8K · 📈) - A consistent, declarative way of interacting with RESTful.. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - react-redux (🥇44 · ⭐ 22K · 📉) - Official React bindings for Redux. MIT
16 | - eslint-plugin-react (🥈42 · ⭐ 7.6K · 📉) - React specific linting rules for ESLint. MIT
17 | - motion (🥇40 · ⭐ 14K · 📉) - Open source, production-ready animation and gesture library for React. MIT
18 | - reselect (🥈39 · ⭐ 18K · 📉) - Selector library for Redux. MIT
19 | - gridjs (🥉26 · ⭐ 3.3K · 📉) - Advanced table plugin. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2022-03-03_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - Styled Components (🥇44 · ⭐ 36K · 📈) - Visual primitives for the component age. Use the best.. MIT
6 | - eslint-plugin-react (🥇44 · ⭐ 7.6K · 📈) - React specific linting rules for ESLint. MIT
7 | - umi (🥈40 · ⭐ 12K · 📈) - Pluggable enterprise-level react application framework. MIT
8 | - React ApexCharts (🥉30 · ⭐ 890 · 📈) - React Component for ApexCharts. MIT
9 | - React Ansi (🥉16 · ⭐ 23 · 📈) - A foldable and searchable ansi log viewer for React. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - sql.js (🥉32 · ⭐ 9.9K · 📉) - A javascript library to run SQLite on the web. MIT
16 | - dnd-kit (🥉27 · ⭐ 4.1K · 📉) - The modern, lightweight, performant, accessible and extensible drag &.. MIT
17 | - react-easy-crop (🥉26 · ⭐ 1.5K · 🐣) - Ricardo fork of https://valentinh.github.io/react-easy-.. MIT
18 | - react-design-editor (🥉22 · ⭐ 930 · 📉) - React Design Editor has started to developed direct.. MIT
19 | - Monaco Yaml (🥉22 · ⭐ 110 · 📉) - YAML plugin for the Monaco Editor. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2022-03-10_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - axios (🥇49 · ⭐ 92K · 📈) - Promise based HTTP client for the browser and node.js. MIT
6 | - Gatsby (🥈49 · ⭐ 53K · 📈) - Build blazing fast, modern apps and websites with React. MIT
7 | - jqGrid (🥉26 · ⭐ 2.8K · 📈) - jQuery grid plugin. ❗Unlicensed
8 | - react-flatpickr (🥉26 · ⭐ 510 · 📈) - flatpickr for React. MIT
9 | - edtr-io (🥉23 · ⭐ 670 · 📈) - Edtr.io is an open source WYSIWYG in-line web editor written in React... MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - d3 (🥇43 · ⭐ 100K · 📉) - Bring data to life with SVG, Canvas and HTML. ISC
16 | - react-query (🥈41 · ⭐ 26K · 📉) - Hooks for fetching, caching and updating asynchronous data in.. MIT
17 | - React Admin (🥇41 · ⭐ 19K · 📉) - A frontend Framework for building B2B applications running.. MIT

18 | - i18next (🥉40 · ⭐ 6.1K · 📉) - i18next: learn once - translate everywhere. MIT
19 | - umi (🥉37 · ⭐ 12K · 📉) - Pluggable enterprise-level react application framework. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2022-03-31_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - react-table (🥇41 · ⭐ 17K · 📈) - Hooks for building fast and extendable tables and datagrids for.. MIT
6 | - react-three-fiber (🥈37 · ⭐ 17K · 📈) - A React renderer for Three.js. MIT
7 | - React Ace (🥇37 · ⭐ 3.5K · 📈) - React Ace Component. MIT
8 | - RevoGrid (🥉27 · ⭐ 2K · 📈) - Powerful virtual data grid smartsheet with advanced customization... MIT
9 | - trunx (🥉19 · ⭐ 59 · 📈) - Super Saiyan React components, son of awesome Bulma, implemented in.. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - Gatsby (🥈48 · ⭐ 53K · 📉) - Build blazing fast, modern apps and websites with React. MIT
16 | - polaris-react (🥈36 · ⭐ 4.6K · 📉) - Our design system helps us work together to build a great.. MIT
17 | - Semiotic (🥉30 · ⭐ 2.3K · 📉) - A data visualization framework combining React & D3. Apache-2
18 | - react-csv (🥉30 · ⭐ 890 · 📉) - React components to build CSV files on the fly basing on.. MIT
19 | - chartify (🥉16 · ⭐ 670 · 📉) - React.js plugin for building charts using CSS. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2022-04-21_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - redux (🥇49 · ⭐ 58K · 📈) - Predictable state container for JavaScript apps. MIT
6 | - react-redux (🥇46 · ⭐ 22K · 📈) - Official React bindings for Redux. MIT
7 | - react-dnd (🥇44 · ⭐ 17K · 📈) - Drag and Drop for React. MIT
8 | - react-slick (🥇41 · ⭐ 10K · 📈) - React carousel component. MIT
9 | - autoresponsive-react (🥈25 · ⭐ 1.5K · 📈) - Auto Responsive Layout Library For React. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - vite (🥈43 · ⭐ 41K · 📉) - Next generation frontend tooling. Its fast!. MIT
16 | - tinymce (🥇43 · ⭐ 11K · 📉) - The worlds #1 JavaScript library for rich text editing. Available for.. MIT
17 | - echarts (🥈41 · ⭐ 51K · 📉) - Apache ECharts is a powerful, interactive charting and data.. Apache-2
18 | - lerna (🥈40 · ⭐ 32K · 📉) - A tool for managing JavaScript projects with multiple packages. MIT
19 | - react-google-charts (🥈31 · ⭐ 1.2K · 📉) - A thin, typed, React wrapper over Google Charts.. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2022-04-28_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - vite (🥇45 · ⭐ 41K · 📈) - Next generation frontend tooling. Its fast!. MIT
6 | - Handsontable (🥇38 · ⭐ 17K · 📈) - JavaScript data grid with a spreadsheet look & feel. Works.. ❗️ICU
7 | - react-popper (🥇37 · ⭐ 2.3K · 📈) - Official React library to use Popper, the positioning library. MIT
8 | - react-draggable (🥈36 · ⭐ 7.5K · 📈) - React draggable component. MIT
9 | - charts (🥈31 · ⭐ 14K · 📈) - Simple, responsive, modern SVG Charts with zero dependencies. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - Gatsby (🥈48 · ⭐ 53K · 📉) - Build blazing fast, modern apps and websites with React. MIT
16 | - winston (🥈44 · ⭐ 19K · 📉) - A logger for just about everything. MIT
17 | - xstate (🥈41 · ⭐ 20K · 📉) - State machines and statecharts for the modern web. MIT
18 | - sweetalert2 (🥇41 · ⭐ 14K · 📉) - A beautiful, responsive, highly customizable and accessible (WAI-.. MIT
19 | - react-styleguidist (🥈36 · ⭐ 10K · 📉) - Isolated React component development environment with a.. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2022-05-05_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - Gatsby (🥈49 · ⭐ 53K · 📈) - Build blazing fast, modern apps and websites with React. MIT
6 | - visx (🥈35 · ⭐ 15K · 📈) - visx | visualization components. MIT
7 | - react-avatar-editor (🥈34 · ⭐ 1.9K · 📈) - Small avatar & profile picture component. Resize and.. MIT
8 | - react-mde (🥈31 · ⭐ 1.3K · 📈) - React Markdown Editor. MIT
9 | - Drawflow (🥉28 · ⭐ 2.1K · 📈) - Simple flow library. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - Webpack (🥇53 · ⭐ 61K · 📉) - A bundler for javascript and friends. Packs many modules into a few.. MIT
16 | - vite (🥈44 · ⭐ 41K · 📉) - Next generation frontend tooling. Its fast!. MIT
17 | - esbuild (🥈43 · ⭐ 32K · 📉) - An extremely fast JavaScript and CSS bundler and minifier. MIT
18 | - react-spaces (🥉19 · ⭐ 1K · 📉) - React components that allow you to divide a page or container.. MIT
19 | - flat-ui (🥉17 · ⭐ 330 · 📉) - Welcome friends! **flat-ui** is a React component that will render.. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2022-05-26_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - cypress (🥈48 · ⭐ 39K · 📈) - Fast, easy and reliable testing for anything that runs in a browser. MIT
6 | - immutable-js (🥇45 · ⭐ 32K · 📈) - Immutable persistent data collections for Javascript which.. MIT
7 | - lerna (🥈43 · ⭐ 33K · 📈) - A tool for managing JavaScript projects with multiple packages. MIT
8 | - log4js-node (🥉43 · ⭐ 5.4K · 📈) - A port of log4js to node.js. Apache-2
9 | - ring-ui (🥉32 · ⭐ 3K · 📈) - A collection of JetBrains Web UI components. Apache-2
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - Gatsby (🥈48 · ⭐ 53K · 📉) - Build blazing fast, modern apps and websites with React. MIT
16 | - Styled Components (🥇43 · ⭐ 37K · 📉) - Visual primitives for the component age. Use the best.. MIT
17 | - preact (🥇43 · ⭐ 32K · 📉) - Fast 3kB React alternative with the same modern API. Components &.. MIT
18 | - formatjs (🥇40 · ⭐ 13K · 📉) - The monorepo home to all of the FormatJS related libraries, most.. BSD-3
19 | - Monaco Yaml (🥉22 · ⭐ 120 · 📉) - YAML plugin for the Monaco Editor. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2022-07-14_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - Gatsby (🥈49 · ⭐ 53K · 📈) - Build blazing fast, modern apps and websites with React. MIT
6 | - cypress (🥇48 · ⭐ 39K · 📈) - Fast, easy and reliable testing for anything that runs in a browser. MIT
7 | - history (🥈40 · ⭐ 7.8K · 📈) - Manage session history with JavaScript. MIT
8 | - navi (🥈28 · ⭐ 2.1K · 📈) - Declarative, asynchronous routing for React. MIT
9 | - ore-ui (🥉22 · ⭐ 160 · 📈) - Building blocks to construct game UIs using web tech. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - d3 (🥇44 · ⭐ 100K · 📉) - Bring data to life with SVG, Canvas and HTML. ISC
16 | - vite (🥇44 · ⭐ 44K · 📉) - Next generation frontend tooling. Its fast!. MIT
17 | - eslint-plugin-react (🥈43 · ⭐ 7.9K · 💤) - React-specific linting rules for ESLint. MIT
18 | - react-query (🥈40 · ⭐ 28K · 📉) - Powerful asynchronous state management, server-state utilities.. MIT
19 | - react-quill (🥈30 · ⭐ 5.2K · 📉) - A Quill component for React. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2022-07-21_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - Chart.js (🥇47 · ⭐ 58K · 📈) - Simple HTML5 Charts using the canvas tag. MIT
6 | - vite (🥇45 · ⭐ 45K · 📈) - Next generation frontend tooling. Its fast!. MIT
7 | - date-fns (🥈45 · ⭐ 29K · 📈) - Modern JavaScript date utility library. MIT
8 | - Tauri (🥇40 · ⭐ 47K · 📈) - Build smaller, faster, and more secure desktop applications with a.. Apache-2
9 | - react-quill (🥈32 · ⭐ 5.2K · 📈) - A Quill component for React. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - react-redux (🥇45 · ⭐ 22K · 📉) - Official React bindings for Redux. MIT
16 | - Recharts (🥇42 · ⭐ 19K · 📉) - Redefined chart library built with React and D3. MIT
17 | - react-dnd (🥇42 · ⭐ 18K · 📉) - Drag and Drop for React. MIT
18 | - swr (🥉38 · ⭐ 23K · 📉) - React Hooks for Data Fetching. MIT
19 | - react-markdown (🥈36 · ⭐ 9K · 📉) - Markdown component for React. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2022-07-28_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - Storybook (🥇48 · ⭐ 73K · 📈) - The UI component explorer. Develop, document, & test React, Vue,.. MIT
6 | - date-fns (🥈46 · ⭐ 29K · 📈) - Modern JavaScript date utility library. MIT
7 | - Styled Components (🥇44 · ⭐ 37K · 📈) - Visual primitives for the component age. Use the best.. MIT
8 | - mantine (🥈36 · ⭐ 13K · 📈) - React components library with native dark theme support. MIT
9 | - SlickGrid (🥉29 · ⭐ 1.5K · 📈) - A lightning fast JavaScript grid/spreadsheet. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - react-redux (🥇44 · ⭐ 22K · 📉) - Official React bindings for Redux. MIT
16 | - immer (🥇43 · ⭐ 23K · 📉) - Create the next immutable state by mutating the current one. MIT
17 | - react-slick (🥇40 · ⭐ 10K · 📉) - React carousel component. MIT
18 | - Handsontable (🥇38 · ⭐ 17K · 📉) - JavaScript data grid with a spreadsheet look & feel. Works.. ❗️ICU
19 | - tsparticles (🥈38 · ⭐ 3.7K · 📉) - tsParticles - Easily create highly customizable JavaScript.. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2022-08-04_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - Next.js (🥇51 · ⭐ 91K · 📈) - The React Framework. MIT
6 | - vite (🥇46 · ⭐ 46K · 📈) - Next generation frontend tooling. Its fast!. MIT
7 | - react-quill (🥈34 · ⭐ 5.2K · 📈) - A Quill component for React. MIT
8 | - BizCharts (🥈33 · ⭐ 5.9K · 📈) - Powerful data visualization library based on G2 and React. MIT
9 | - dnd-kit (🥈31 · ⭐ 5.1K · 📈) - The modern, lightweight, performant, accessible and extensible drag &.. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - Gatsby (🥈48 · ⭐ 53K · 📉) - Build blazing fast, modern apps and websites with React. MIT
16 | - apollo-client (🥇45 · ⭐ 18K · 📉) - A fully-featured, production ready caching GraphQL client for.. MIT
17 | - history (🥈37 · ⭐ 7.8K · 📉) - Manage session history with JavaScript. MIT
18 | - react-mde (🥉28 · ⭐ 1.3K · 📉) - React Markdown Editor. MIT
19 | - unstorage (🥉27 · ⭐ 580 · 📉) - Universal Storage Layer. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2022-08-25_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - Gatsby (🥈49 · ⭐ 53K · 📈) - Build blazing fast, modern apps and websites with React. MIT
6 | - jest (🥇49 · ⭐ 40K · 📈) - Delightful JavaScript Testing. MIT
7 | - Tailewind CSS (🥇47 · ⭐ 60K · 📈) - A utility-first CSS framework for rapid UI development. MIT
8 | - eslint-plugin-react (🥈44 · ⭐ 8K · 📈) - React-specific linting rules for ESLint. MIT
9 | - bumbag-ui (🥉23 · ⭐ 1K · 📈) - Build themeable React & React Native applications with your Bumbag. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - immutable-js (🥇44 · ⭐ 32K · 📉) - Immutable persistent data collections for Javascript which.. MIT
16 | - react-youtube (🥉33 · ⭐ 1.6K · 📉) - react.js powered YouTube player component. MIT
17 | - react-split-pane (🥉32 · ⭐ 2.8K · 📉) - React split-pane component. MIT
18 | - react-date-range (🥉31 · ⭐ 2.3K · 📉) - A React component for choosing dates and date ranges. MIT
19 | - react-notifications-component (🥉27 · ⭐ 1.2K · 📉) - Delightful and highly customisable React Component to.. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2022-09-01_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - three.js (🥇48 · ⭐ 85K · 📈) - JavaScript 3D Library. MIT
6 | - yup (🥉40 · ⭐ 18K · 📈) - Dead simple Object schema validation. MIT
7 | - react-hot-loader (🥈40 · ⭐ 12K · 📈) - Tweak React components in real time. (Deprecated: use Fast.. MIT
8 | - lightGallery (🥈34 · ⭐ 5.3K · 📈) - A customizable, modular, responsive, lightbox gallery.. ❗️GPL-3.0
9 | - teaful (🥉18 · ⭐ 640 · 📈) - Tiny, easy and powerful React state management. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - Webpack (🥇52 · ⭐ 62K · 📉) - A bundler for javascript and friends. Packs many modules into a few.. MIT
16 | - sql.js (🥉32 · ⭐ 10K · 📉) - A javascript library to run SQLite on the web. MIT
17 | - BizCharts (🥉31 · ⭐ 5.9K · 📉) - Powerful data visualization library based on G2 and React. MIT
18 | - react-mde (🥉27 · ⭐ 1.4K · 📉) - React Markdown Editor. MIT
19 | - prosemirror (🥉26 · ⭐ 6.1K · 📉) - The ProseMirror WYSIWYM editor. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2022-09-08_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - google-map-react (🥈35 · ⭐ 5.8K · 📈) - Google map library for react that allows rendering.. MIT
6 | - react-calendar (🥈35 · ⭐ 2.5K · 📈) - Ultimate calendar for your React app. MIT
7 | - sql.js (🥈34 · ⭐ 10K · 📈) - A javascript library to run SQLite on the web. MIT
8 | - react-mde (🥈29 · ⭐ 1.4K · 📈) - React Markdown Editor. MIT
9 | - iconify (🥉23 · ⭐ 1.7K · 📈) - Universal icon framework. One syntax for FontAwesome, Material Design.. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - formatjs (🥇40 · ⭐ 13K · 📉) - The monorepo home to all of the FormatJS related libraries, most.. BSD-3
16 | - carbon (🥈37 · ⭐ 5.8K · 📉) - A design system built by IBM. Apache-2
17 | - docz (🥈36 · ⭐ 23K · 📉) - It has never been so easy to document your things!. MIT
18 | - React Chartjs 2 (🥈36 · ⭐ 5.4K · 📉) - React components for Chart.js, the most popular charting.. MIT
19 | - react-loadable (🥉33 · ⭐ 16K · 💀) - A higher order component for loading components with promises. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2022-09-22_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - react-router (🥇49 · ⭐ 48K · 📈) - Declarative routing for React. MIT
6 | - remix-run/react-router (🥇49 · ⭐ 48K · 📈) - Declarative routing for React. MIT
7 | - react-vis (🥈34 · ⭐ 8.3K · 📈) - Data Visualization Components. MIT
8 | - react-responsive (🥈33 · ⭐ 6.4K · 📈) - CSS media queries in react - for responsive design, and.. MIT
9 | - react-container-query (🥉28 · ⭐ 860 · 📈) - Modular responsive component. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - Next.js (🥇50 · ⭐ 93K · 📉) - The React Framework. MIT
16 | - umi (🥈42 · ⭐ 13K · 📉) - A framework in react community. MIT
17 | - bulma (🥈41 · ⭐ 46K · 📉) - Modern CSS framework based on Flexbox. MIT
18 | - motion (🥇40 · ⭐ 16K · 📉) - Open source, production-ready animation and gesture library for React. MIT
19 | - muuri-react (🥉15 · ⭐ 270 · 💀) - The layout engine for React. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2022-10-13_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - Electron (🥇51 · ⭐ 100K · 📈) - Build cross-platform desktop apps with JavaScript, HTML, and CSS. MIT
6 | - eslint-plugin-react (🥈45 · ⭐ 8.1K · 📈) - React-specific linting rules for ESLint. MIT
7 | - Semantic-UI (🥈39 · ⭐ 50K · 📈) - Semantic is a UI component framework based around useful.. MIT
8 | - react-icons (🥇39 · ⭐ 8.6K · 📈) - svg react icons of popular icon packs. MIT
9 | - React-Move (🥉30 · ⭐ 6.5K · 💀) - React Move | Beautiful, data-driven animations for React. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - react-router (🥇48 · ⭐ 48K · 📉) - Declarative routing for React. MIT
16 | - remix-run/react-router (🥇48 · ⭐ 48K · 📉) - Declarative routing for React. MIT
17 | - diegomura/react-pdf (🥉31 · ⭐ 11K · 📉) - Create PDF files using React. MIT
18 | - talkr (🥉14 · ⭐ 210 · 📉) - Talkr is the lightest i18n provider for React applications. It supports.. ISC
19 | - dataformsjs (🥉14 · ⭐ 150 · 📉) - DataFormsJS A minimal JavaScript Framework, standalone React and.. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2022-11-03_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - vite (🥇46 · ⭐ 49K · 📈) - Next generation frontend tooling. Its fast!. MIT
6 | - reselect (🥈40 · ⭐ 19K · 📈) - Selector library for Redux. MIT
7 | - React Flow (🥈36 · ⭐ 13K · 📈) - Highly customizable library for building an interactive node-based.. MIT
8 | - wouter (🥈31 · ⭐ 4.6K · 📈) - A minimalist-friendly ~1.5KB routing for React and Preact. Nothing.. ISC
9 | - ReactPivot (🥉22 · ⭐ 1K · 💀) - React-Pivot is a data-grid component with pivot-table-like.. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - immutable-js (🥇44 · ⭐ 32K · 📉) - Immutable persistent data collections for Javascript which.. MIT
16 | - bulma (🥈40 · ⭐ 46K · 📉) - Modern CSS framework based on Flexbox. MIT
17 | - react-mde (🥉27 · ⭐ 1.4K · 📉) - React Markdown Editor. MIT
18 | - ckeditor5-react (🥉26 · ⭐ 350 · 📉) - Official CKEditor 5 React component. ❗️CNRI-Python-GPL-Compatible
19 | - react-spaces (🥉21 · ⭐ 1.1K · 📉) - React components that allow you to divide a page or container.. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2022-11-10_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - react-pdf (🥇37 · ⭐ 6.4K · 📈) - Display PDFs in your React app as easily as if they were images. MIT
6 | - React Chartjs 2 (🥈37 · ⭐ 5.5K · 📈) - React components for Chart.js, the most popular charting.. MIT
7 | - react-paginate (🥉34 · ⭐ 2.4K · 📈) - A ReactJS component that creates a pagination. MIT
8 | - video-react (🥉33 · ⭐ 2.4K · 📈) - A web video player built for the HTML5 world using React library. MIT
9 | - searchkit (🥉30 · ⭐ 4.5K · 📈) - Node.js & Browser SDK & React UI components for Elasticsearch. Apache-2
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - vite (🥈45 · ⭐ 49K · 📉) - Next generation frontend tooling. Its fast!. MIT
16 | - downshift (🥈37 · ⭐ 11K · 📉) - A set of primitives to build simple, flexible, WAI-ARIA compliant.. MIT
17 | - theme-ui (🥈37 · ⭐ 4.7K · 📉) - Build consistent, themeable React apps based on constraint-based.. MIT
18 | - editor.js (🥇34 · ⭐ 21K · 📉) - A block-styled editor with clean JSON output. Apache-2
19 | - react-vis (🥈34 · ⭐ 8.4K · 📉) - Data Visualization Components. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2022-12-08_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - react-datepicker (🥇41 · ⭐ 7K · 📈) - A simple and reusable datepicker component for React. MIT
6 | - i18next (🥉41 · ⭐ 6.5K · 📈) - i18next: learn once - translate everywhere. MIT
7 | - react-vis (🥈34 · ⭐ 8.4K · 📈) - Data Visualization Components. MIT
8 | - dnd-kit (🥉29 · ⭐ 6.3K · 📈) - The modern, lightweight, performant, accessible and extensible drag &.. MIT
9 | - react-i13n (🥉24 · ⭐ 360 · 📈) - A performant, scalable and pluggable approach to instrumenting.. BSD-3
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - SheetJS (🥈38 · ⭐ 32K · 📉) - SheetJS Community Edition -- Spreadsheet Data Toolkit. Apache-2
16 | - nivo (🥈36 · ⭐ 11K · 📉) - nivo provides a rich set of dataviz components, built on top of the.. MIT
17 | - theme-ui (🥈36 · ⭐ 4.8K · 📉) - Build consistent, themeable React apps based on constraint-based.. MIT
18 | - Bit (🥈35 · ⭐ 16K · 📉) - Build, distribute, and collaborate on components. Apache-2
19 | - react-calendar (🥈35 · ⭐ 2.8K · 📉) - Ultimate calendar for your React app. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2022-12-29_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - mantine (🥈37 · ⭐ 16K · 📈) - React components library with native dark theme support. MIT
6 | - aframe (🥉30 · ⭐ 15K · 💀) - Building Blocks for the VR Web. MIT
7 | - hookstate (🥉30 · ⭐ 1.5K · 📈) - The simple but very powerful and incredibly fast state management.. MIT
8 | - jqGrid (🥉23 · ⭐ 2.8K · 📈) - jQuery grid plugin. ❗Unlicensed
9 | - editable-react-table (🥉11 · ⭐ 520 · 📈) - React table built to resemble a database. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - jest (🥇49 · ⭐ 41K · 📉) - Delightful JavaScript Testing. MIT
16 | - date-fns (🥈44 · ⭐ 31K · 📉) - Modern JavaScript date utility library. MIT
17 | - eslint-plugin-react (🥈44 · ⭐ 8.2K · 📉) - React-specific linting rules for ESLint. MIT
18 | - react-cosmos (🥉29 · ⭐ 7.7K · 📉) - Sandbox for developing and testing UI components in isolation. MIT
19 | - Monaco Yaml (🥉25 · ⭐ 160 · 📉) - YAML plugin for the Monaco Editor. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2023-01-12_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - react-router (🥇48 · ⭐ 49K · 📈) - Declarative routing for React. MIT
6 | - remix-run/react-router (🥇48 · ⭐ 49K · 📈) - Declarative routing for React. MIT
7 | - react-vis (🥈36 · ⭐ 8.4K · 📈) - Data Visualization Components. MIT
8 | - react-draft-wysiwyg (🥈34 · ⭐ 6K · 📈) - A Wysiwyg editor build on top of ReactJS and DraftJS... MIT
9 | - jqGrid (🥉26 · ⭐ 2.8K · 📈) - jQuery grid plugin. ❗Unlicensed
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - Slate (🥇41 · ⭐ 26K · 📉) - A completely customizable framework for building rich text editors... MIT
16 | - reactstrap (🥈40 · ⭐ 10K · 📉) - Simple React Bootstrap 5 components. MIT
17 | - react-icons (🥈39 · ⭐ 9K · 📉) - svg react icons of popular icon packs. MIT
18 | - Semantic-UI (🥈37 · ⭐ 50K · 📉) - Semantic is a UI component framework based around useful.. MIT
19 | - react-testing-library (🥉37 · ⭐ 17K · 📉) - Simple and complete React DOM testing utilities that.. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2023-01-19_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - eslint-plugin-react (🥇46 · ⭐ 8.3K · 📈) - React-specific linting rules for ESLint. MIT
6 | - d3 (🥇45 · ⭐ 100K · 📈) - Bring data to life with SVG, Canvas and HTML. ISC
7 | - date-fns (🥈45 · ⭐ 31K · 📈) - Modern JavaScript date utility library. MIT
8 | - ka-table (🥉26 · ⭐ 450 · 📈) - Lightweight MIT React Table component with Sorting, Filtering,.. MIT
9 | - muuri-react (🥉20 · ⭐ 270 · 📈) - The layout engine for React. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - preact (🥇43 · ⭐ 34K · 📉) - Fast 3kB React alternative with the same modern API. Components &.. MIT
16 | - tsparticles (🥈37 · ⭐ 4.7K · 📉) - tsParticles - Easily create highly customizable JavaScript.. MIT
17 | - react-modal (🥈36 · ⭐ 7.1K · 📉) - Accessible modal dialog component for React. MIT
18 | - reakit (🥉33 · ⭐ 6.5K · 📉) - Toolkit for building accessible web apps with React. MIT
19 | - megadraft (🥉28 · ⭐ 1.2K · 📉) - Megadraft is a Rich Text editor built on top of Facebooks Draft.JS.. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2023-01-26_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - three.js (🥇48 · ⭐ 88K · 📈) - JavaScript 3D Library. MIT
6 | - mermaid (🥈43 · ⭐ 53K · 📈) - Generation of diagrams like flowcharts or sequence diagrams from text.. MIT
7 | - react-diagrams (🥉30 · ⭐ 7.5K · 📈) - a super simple, no-nonsense diagramming library written in.. MIT
8 | - searchkit (🥉29 · ⭐ 4.5K · 📈) - Search UI for Elasticsearch. Compatible with Algolias.. Apache-2
9 | - react-simple-timefield (🥉21 · ⭐ 96 · 📈) - Simple React time input field. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - Next.js (🥇50 · ⭐ 100K · 📉) - The React Framework. MIT
16 | - Gatsby (🥈48 · ⭐ 54K · 📉) - The fastest frontend for the headless web. Build modern websites with.. MIT
17 | - vite (🥈45 · ⭐ 52K · 📉) - Next generation frontend tooling. Its fast!. MIT
18 | - immer (🥇44 · ⭐ 24K · 📉) - Create the next immutable state by mutating the current one. MIT
19 | - react-redux (🥇44 · ⭐ 23K · 📉) - Official React bindings for Redux. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2023-02-02_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - three.js (🥇49 · ⭐ 89K · 📈) - JavaScript 3D Library. MIT
6 | - redux (🥇48 · ⭐ 59K · 📈) - Predictable state container for JavaScript apps. MIT
7 | - lodash (🥈46 · ⭐ 56K · 💀) - A modern JavaScript utility library delivering modularity, performance,.. MIT
8 | - loadable-components (🥉33 · ⭐ 7.1K · 📈) - The recommended Code Splitting library for React. MIT
9 | - dataformsjs (🥉18 · ⭐ 160 · 📈) - DataFormsJS A minimal JavaScript Framework, standalone React and.. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - react-select (🥇42 · ⭐ 26K · 📉) - The Select Component for React.js. MIT
16 | - bulma (🥈40 · ⭐ 47K · 📉) - Modern CSS framework based on Flexbox. MIT
17 | - xstate (🥈40 · ⭐ 23K · 📉) - State machines and statecharts for the modern web. MIT
18 | - React-Toastify (🥇38 · ⭐ 10K · 📉) - React notification made easy !. MIT
19 | - jsx-ast-utils (🥉32 · ⭐ 140 · 📉) - AST utility module for statically analyzing JSX. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2023-02-09_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - Storybook (🥇50 · ⭐ 77K · 📈) - Storybook is a frontend workshop for building UI components and.. MIT
6 | - react-spring (🥇42 · ⭐ 25K · 📈) - A spring physics based React animation library. MIT
7 | - bulma (🥇41 · ⭐ 47K · 📈) - Modern CSS framework based on Flexbox. MIT
8 | - electron-react-boilerplate (🥉32 · ⭐ 21K · 📈) - A Foundation for Scalable Cross-Platform Apps. MIT
9 | - unstorage (🥉30 · ⭐ 770 · 📈) - Universal Storage System. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - Webpack (🥇51 · ⭐ 62K · 📉) - A bundler for javascript and friends. Packs many modules into a few.. MIT
16 | - enzyme (🥈41 · ⭐ 20K · 📉) - JavaScript Testing utilities for React. MIT
17 | - sweetalert2 (🥇41 · ⭐ 16K · 📉) - A beautiful, responsive, highly customizable and accessible (WAI-.. MIT
18 | - uppy (🥇38 · ⭐ 26K · 📉) - The next open source file uploader for web browsers. MIT
19 | - React Chartjs 2 (🥈38 · ⭐ 5.7K · 📉) - React components for Chart.js, the most popular charting.. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2023-02-23_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - axios (🥇52 · ⭐ 99K · 📈) - Promise based HTTP client for the browser and node.js. MIT
6 | - Chart.js (🥇48 · ⭐ 60K · 📈) - Simple HTML5 Charts using the canvas tag. MIT
7 | - preact (🥇44 · ⭐ 34K · 📈) - Fast 3kB React alternative with the same modern API. Components &.. MIT
8 | - Grommet (🥈38 · ⭐ 8.1K · 📈) - a react-based framework that provides accessibility, modularity,.. Apache-2
9 | - Radix Primitives (🥉31 · ⭐ 8.1K · 📈) - Radix Primitives is an open-source UI component library.. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - Webpack (🥇50 · ⭐ 63K · 📉) - A bundler for javascript and friends. Packs many modules into a few.. MIT
16 | - three.js (🥇48 · ⭐ 89K · 📉) - JavaScript 3D Library. MIT
17 | - Gatsby (🥈48 · ⭐ 54K · 📉) - The fastest frontend for the headless web. Build modern websites with.. MIT
18 | - echarts (🥈40 · ⭐ 54K · 📉) - Apache ECharts is a powerful, interactive charting and data.. Apache-2
19 | - bulma (🥈40 · ⭐ 47K · 📉) - Modern CSS framework based on Flexbox. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2023-03-02_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - Gatsby (🥈49 · ⭐ 54K · 📈) - The fastest frontend for the headless web. Build modern websites with.. MIT
6 | - react-spring (🥇43 · ⭐ 25K · 📈) - A spring physics based React animation library. MIT
7 | - swr (🥈41 · ⭐ 26K · 📈) - React Hooks for Data Fetching. MIT
8 | - react-select (🥇41 · ⭐ 26K · 📈) - The Select Component for React.js. MIT
9 | - kea (🥉28 · ⭐ 1.9K · 📈) - Production Ready State Management for React. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - date-fns (🥈44 · ⭐ 31K · 📉) - Modern JavaScript date utility library. MIT
16 | - echarts (🥈32 · ⭐ 54K · 📉) - Apache ECharts is a powerful, interactive charting and data.. Apache-2
17 | - charts (🥉30 · ⭐ 15K · 📉) - Simple, responsive, modern SVG Charts with zero dependencies. MIT
18 | - react-digraph (🥉28 · ⭐ 2.5K · 📉) - A library for creating directed graph editors. MIT
19 | - Material Kit React (🥈20 · ⭐ 4.4K · 📉) - React Dashboard made with Material UIs components... MIT

20 |
21 |
--------------------------------------------------------------------------------
/history/2023-03-09_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - Webpack (🥇52 · ⭐ 63K · 📈) - A bundler for javascript and friends. Packs many modules into a few.. MIT
6 | - log4js-node (🥉42 · ⭐ 5.6K · 📈) - A port of log4js to node.js. Apache-2
7 | - echarts (🥈41 · ⭐ 54K · 📈) - Apache ECharts is a powerful, interactive charting and data.. Apache-2
8 | - Tauri (🥇40 · ⭐ 60K · 📈) - Build smaller, faster, and more secure desktop applications with a.. Apache-2
9 | - react-spectrum (🥈36 · ⭐ 8.1K · 📈) - A collection of libraries and tools that help you build.. Apache-2
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - d3 (🥇44 · ⭐ 100K · 📉) - Bring data to life with SVG, Canvas and HTML. ISC
16 | - mobx (🥈42 · ⭐ 26K · 📉) - Simple, scalable state management. MIT
17 | - react-spring (🥇42 · ⭐ 25K · 📉) - A spring physics based React animation library. MIT
18 | - mantine (🥈37 · ⭐ 18K · 📉) - React components library with native dark theme support. MIT
19 | - datav (🥉11 · ⭐ 2.9K · 📉) - AiAPM is a modern APM implementation, provide observability.. ❗Unlicensed
20 |
21 |
--------------------------------------------------------------------------------
/history/2023-03-16_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - Webpack (🥇53 · ⭐ 63K · 📈) - A bundler for javascript and friends. Packs many modules into a few.. MIT
6 | - three.js (🥇49 · ⭐ 90K · 📈) - JavaScript 3D Library. MIT
7 | - enzyme (🥈42 · ⭐ 20K · 📈) - JavaScript Testing utilities for React. MIT
8 | - history (🥈39 · ⭐ 8.1K · 💀) - Manage session history with JavaScript. MIT
9 | - react-base-table (🥉29 · ⭐ 1.4K · 📈) - A react table component to display large datasets with.. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - esbuild (🥈44 · ⭐ 35K · 📉) - An extremely fast bundler for the web. MIT
16 | - vite (🥈43 · ⭐ 54K · 📉) - Next generation frontend tooling. Its fast!. MIT
17 | - echarts (🥈40 · ⭐ 54K · 📉) - Apache ECharts is a powerful, interactive charting and data.. Apache-2
18 | - react-dnd (🥇40 · ⭐ 19K · 📉) - Drag and Drop for React. MIT
19 | - React Ansi (🥉12 · ⭐ 36 · 💀) - A foldable and searchable ansi log viewer for React. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2023-03-23_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - vite (🥇46 · ⭐ 54K · 📈) - Next generation frontend tooling. Its fast!. MIT
6 | - esbuild (🥈45 · ⭐ 35K · 📈) - An extremely fast bundler for the web. MIT
7 | - echarts (🥈41 · ⭐ 55K · 📈) - Apache ECharts is a powerful, interactive charting and data.. Apache-2
8 | - react-markdown-editor-lite (🥉27 · ⭐ 900 · 📈) - a light-weight Markdown editor based on React... MIT
9 | - datav (🥉14 · ⭐ 2.9K · 📈) - Observe is a lightweight observability and APM platform that.. ❗Unlicensed
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - Chart.js (🥇47 · ⭐ 60K · 📉) - Simple HTML5 Charts using the canvas tag. MIT
16 | - react-redux (🥇44 · ⭐ 23K · 📉) - Official React bindings for Redux. MIT
17 | - parcel (🥈42 · ⭐ 42K · 📉) - The zero configuration build tool for the web. MIT
18 | - react-vis (🥈34 · ⭐ 8.5K · 📉) - Data Visualization Components. MIT
19 | - hookstate (🥉28 · ⭐ 1.5K · 📉) - The simple but very powerful and incredibly fast state management.. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2023-04-13_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - Webpack (🥇54 · ⭐ 63K · 📈) - A bundler for javascript and friends. Packs many modules into a few.. MIT
6 | - reactstrap (🥇42 · ⭐ 10K · 📈) - Simple React Bootstrap 5 components. MIT
7 | - react-virtualized (🥇41 · ⭐ 25K · 💤) - React components for efficiently rendering large lists.. MIT
8 | - SheetJS (🥈38 · ⭐ 33K · 📈) - SheetJS Spreadsheet Data Toolkit -- New home.. Apache-2
9 | - Semantic-UI (🥈36 · ⭐ 51K · 📈) - Semantic is a UI component framework based around useful.. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - axios (🥇50 · ⭐ 100K · 📉) - Promise based HTTP client for the browser and node.js. MIT
16 | - react-router (🥇47 · ⭐ 50K · 📉) - Declarative routing for React. MIT
17 | - remix-run/react-router (🥇47 · ⭐ 50K · 📉) - Declarative routing for React. MIT
18 | - parcel (🥈42 · ⭐ 42K · 📉) - The zero configuration build tool for the web. MIT
19 | - eslint-plugin-jsx-a11y (🥉30 · ⭐ 3.1K · 📉) - Static AST checker for a11y rules on JSX elements. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2023-04-20_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - axios (🥇52 · ⭐ 100K · 📈) - Promise based HTTP client for the browser and node.js. MIT
6 | - react-hook-form (🥇45 · ⭐ 34K · 📈) - React Hooks for form state management and validation (Web +.. MIT
7 | - immer (🥇45 · ⭐ 25K · 📈) - Create the next immutable state by mutating the current one. MIT
8 | - react-dnd (🥇41 · ⭐ 19K · 📈) - Drag and Drop for React. MIT
9 | - formatjs (🥇41 · ⭐ 14K · 📈) - The monorepo home to all of the FormatJS related libraries, most.. BSD-3
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - react-responsive (🥉31 · ⭐ 6.6K · 📉) - CSS media queries in react - for responsive design, and.. MIT
16 | - ring-ui (🥉30 · ⭐ 3.4K · 📉) - A collection of JetBrains Web UI components. Apache-2
17 | - BizCharts (🥉29 · ⭐ 6K · 📉) - Powerful data visualization library based on G2 and React. ❗Unlicensed
18 | - aphrodite (🥉28 · ⭐ 5.3K · 💀) - Framework-agnostic CSS-in-JS with support for server-side.. ❗Unlicensed
19 | - ckeditor4-react (🥉22 · ⭐ 86 · 📉) - Official CKEditor 4 React component. ❗Unlicensed
20 |
21 |
--------------------------------------------------------------------------------
/history/2023-05-04_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - unform (🥉31 · ⭐ 4.5K · 💀) - Performance-focused API for React forms. MIT
6 | - react-masonry-component (🥈29 · ⭐ 1.4K · 💀) - A React.js component for using @desandros Masonry. MIT
7 | - react-refetch (🥉28 · ⭐ 3.4K · 📈) - A simple, declarative, and composable way to fetch data for.. MIT
8 | - Re-Flex (🥈27 · ⭐ 550 · 📈) - Resizable Flex layout container components for advanced React web.. MIT
9 | - formsy-material-ui (🥉25 · ⭐ 580 · 💀) - A Formsy compatibility wrapper for Material-UI form.. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - immutable-js (🥇45 · ⭐ 33K · 📉) - Immutable persistent data collections for Javascript which.. MIT
16 | - react-redux (🥇43 · ⭐ 23K · 📉) - Official React bindings for Redux. MIT
17 | - react-hot-loader (🥈39 · ⭐ 12K · 📉) - Tweak React components in real time. (Deprecated: use Fast.. MIT
18 | - Semantic UI React (🥈38 · ⭐ 13K · 📉) - The official Semantic-UI-React integration. MIT
19 | - chartify (🥉16 · ⭐ 690 · 💀) - React.js plugin for building charts using CSS. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2023-05-11_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - Gatsby (🥈49 · ⭐ 54K · 📈) - The fastest frontend for the headless web. Build modern websites with.. MIT
6 | - react-redux (🥇44 · ⭐ 23K · 📈) - Official React bindings for Redux. MIT
7 | - react-select (🥇43 · ⭐ 26K · 📈) - The Select Component for React.js. MIT
8 | - formik (🥇42 · ⭐ 32K · 📈) - Build forms in React, without the tears. Apache-2
9 | - react-table (🥇42 · ⭐ 21K · 📈) - Headless UI for building powerful tables & datagrids for TS/JS -.. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - motion (🥇39 · ⭐ 19K · 📉) - Open source, production-ready animation and gesture library for React. MIT
16 | - Blueprint (🥈38 · ⭐ 20K · 📉) - A React-based UI toolkit for the web. Apache-2
17 | - Radix Primitives (🥉27 · ⭐ 9.5K · 📉) - Radix Primitives is an open-source UI component library.. MIT
18 | - cerebral (🥉22 · ⭐ 2K · 💀) - Declarative state and side effects management for popular JavaScript.. MIT
19 | - ckeditor4-react (🥉22 · ⭐ 86 · 📉) - Official CKEditor 4 React component. ❗Unlicensed
20 |
21 |
--------------------------------------------------------------------------------
/history/2023-05-25_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - react-redux (🥇45 · ⭐ 23K · 📈) - Official React bindings for Redux. MIT
6 | - react-spectrum (🥈39 · ⭐ 8.8K · 📈) - A collection of libraries and tools that help you build.. Apache-2
7 | - DevExtreme (🥈37 · ⭐ 1.7K · 📈) - HTML5 JavaScript Component Suite for Responsive Web.. ❗️Aladdin
8 | - searchkit (🥉33 · ⭐ 4.6K · 📈) - Search UI for Elasticsearch & Opensearch. Compatible with.. Apache-2
9 | - next-enterprise (🥉12 · ⭐ 1.7K · 🐣) - An enterprise-grade Next.js boilerplate for high-.. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - vite (🥇45 · ⭐ 57K · 📉) - Next generation frontend tooling. Its fast!. MIT
16 | - react-select (🥇42 · ⭐ 26K · 📉) - The Select Component for React.js. MIT
17 | - winston (🥉41 · ⭐ 21K · 📉) - A logger for just about everything. MIT
18 | - Semiotic (🥉29 · ⭐ 2.4K · 📉) - A data visualization framework combining React & D3. Apache-2
19 | - trunx (🥉20 · ⭐ 65 · 📉) - Super Saiyan React components, son of awesome Bulma. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2023-06-08_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - formik (🥇44 · ⭐ 32K · 📈) - Build forms in React, without the tears. Apache-2
6 | - winston (🥉43 · ⭐ 21K · 📈) - A logger for just about everything. MIT
7 | - tsparticles (🥈38 · ⭐ 5.4K · 📈) - tsParticles - Easily create highly customizable JavaScript.. MIT
8 | - SlickGrid (🥈32 · ⭐ 1.6K · 📈) - A lightning fast JavaScript grid/spreadsheet. MIT
9 | - next-enterprise (🥉15 · ⭐ 3.1K · 🐣) - An enterprise-grade Next.js boilerplate for high-.. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - Sortable (🥇37 · ⭐ 27K · 📉) - Reorderable drag-and-drop lists for modern browsers and touch.. MIT
16 | - react-icons (🥈37 · ⭐ 9.8K · 📉) - svg react icons of popular icon packs. ❗Unlicensed
17 | - React Lazylog (🥉20 · ⭐ 280 · 💀) - MPL-2.0
18 | - aframe (🥉13 · ⭐ 10 · 💀) - Building Blocks for the VR Web. MIT
19 | - React Ansi (🥉9 · ⭐ 36 · 💀) - A foldable and searchable ansi log viewer for React. ❗Unlicensed
20 |
21 |
--------------------------------------------------------------------------------
/history/2023-07-06_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - enzyme (🥈41 · ⭐ 20K · 📈) - JavaScript Testing utilities for React. MIT
6 | - create-react-app (🥈39 · ⭐ 100K · 📈) - Set up a modern web app by running one command. MIT
7 | - mobx (🥈39 · ⭐ 27K · 📈) - Simple, scalable state management. MIT
8 | - mantine (🥈36 · ⭐ 20K · 📈) - A fully featured React components library. MIT
9 | - google-map-react (🥈34 · ⭐ 6.1K · 📈) - Google map library for react that allows rendering.. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - react-select (🥈38 · ⭐ 26K · 📉) - The Select Component for React.js. MIT
16 | - Slate (🥇34 · ⭐ 27K · 📉) - A completely customizable framework for building rich text editors... MIT
17 | - Radix Primitives (🥉31 · ⭐ 11K · 📉) - Radix Primitives is an open-source UI component library.. MIT
18 | - Notistack (🥈28 · ⭐ 3.5K · 📉) - Highly customizable notification snackbars (toasts).. ❗Unlicensed

19 | - react-toast (🥉14 · ⭐ 67 · 💀) - Minimal toast notifications for React. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2023-07-20_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - Gatsby (🥈48 · ⭐ 55K · 📈) - The fastest frontend for the headless web. Build modern websites with.. MIT
6 | - react-redux (🥇47 · ⭐ 23K · 📈) - Official React bindings for Redux. MIT
7 | - esbuild (🥇46 · ⭐ 36K · 📈) - An extremely fast bundler for the web. MIT
8 | - swr (🥈41 · ⭐ 27K · 📈) - React Hooks for Data Fetching. MIT
9 | - zustand (🥈40 · ⭐ 33K · 📈) - Bear necessities for state management in React. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - axios (🥇50 · ⭐ 100K · 📉) - Promise based HTTP client for the browser and node.js. MIT
16 | - Styled Components (🥇46 · ⭐ 39K · 📉) - Visual primitives for the component age. Use the best.. MIT
17 | - immer (🥇44 · ⭐ 26K · 📉) - Create the next immutable state by mutating the current one. MIT
18 | - vite (🥈43 · ⭐ 58K · 📉) - Next generation frontend tooling. Its fast!. MIT
19 | - mantine (🥉32 · ⭐ 21K · 📉) - A fully featured React components library. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2023-07-27_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - vite (🥇48 · ⭐ 58K · 📈) - Next generation frontend tooling. Its fast!. MIT
6 | - react-router (🥇47 · ⭐ 51K · 📈) - Declarative routing for React. MIT
7 | - remix-run/react-router (🥇47 · ⭐ 51K · 📈) - Declarative routing for React. MIT
8 | - mermaid (🥇44 · ⭐ 60K · 📈) - Generation of diagrams like flowcharts or sequence diagrams from text.. MIT
9 | - react-date-picker (🥈35 · ⭐ 1.1K · 📈) - A date picker for your React app. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - Gatsby (🥈47 · ⭐ 55K · 📉) - The fastest frontend for the headless web. Build modern websites with.. MIT
16 | - emotion (🥈42 · ⭐ 17K · 📉) - CSS-in-JS library designed for high performance style composition. MIT
17 | - formatjs (🥈40 · ⭐ 14K · 📉) - The monorepo home to all of the FormatJS related libraries, most.. BSD-3
18 | - eslint-plugin-jsx-a11y (🥉23 · ⭐ 3.2K · 📉) - Static AST checker for a11y rules on JSX elements. MIT
19 | - alright react app (🥉12 · ⭐ 140 · 📉) - Professional React app generator. Comes with an exposed,.. ISC
20 |
21 |
--------------------------------------------------------------------------------
/history/2023-08-03_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - Slate (🥇41 · ⭐ 28K · 📈) - A completely customizable framework for building rich text editors... MIT
6 | - chakra-ui (🥈40 · ⭐ 34K · 📈) - Simple, Modular & Accessible UI Components for your React.. MIT
7 | - jss (🥈36 · ⭐ 7K · 📈) - JSS is an authoring tool for CSS which uses JavaScript as a host language. MIT
8 | - Reactive Search (🥉33 · ⭐ 4.8K · 📈) - Search UI components for React and Vue. Apache-2
9 | - eslint-plugin-jsx-a11y (🥉31 · ⭐ 3.2K · 📈) - Static AST checker for a11y rules on JSX elements. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - axios (🥇49 · ⭐ 100K · 📉) - Promise based HTTP client for the browser and node.js. MIT
16 | - redux (🥇47 · ⭐ 60K · 📉) - Predictable state container for JavaScript apps. MIT
17 | - Blueprint (🥇41 · ⭐ 20K · 📉) - A React-based UI toolkit for the web. Apache-2
18 | - react-testing-library (🥉37 · ⭐ 18K · 📉) - Simple and complete React DOM testing utilities that.. MIT
19 | - react-vis (🥈33 · ⭐ 8.5K · 📉) - Data Visualization Components. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2023-08-10_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - d3 (🥇47 · ⭐ 110K · 📈) - Bring data to life with SVG, Canvas and HTML. ISC
6 | - formik (🥇44 · ⭐ 33K · 📈) - Build forms in React, without the tears. Apache-2
7 | - react-select (🥈42 · ⭐ 26K · 📈) - The Select Component for React.js. MIT
8 | - react-icons (🥇40 · ⭐ 10K · 📈) - svg react icons of popular icon packs. MIT
9 | - react-toast (🥉17 · ⭐ 67 · 💀) - Minimal toast notifications for React. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - apexcharts.js (🥈37 · ⭐ 13K · 📉) - Interactive JavaScript Charts built on SVG. MIT
16 | - react-table (🥈36 · ⭐ 22K · 📉) - Headless UI for building powerful tables & datagrids for TS/JS -.. MIT
17 | - chakra-ui (🥉34 · ⭐ 34K · 📉) - Simple, Modular & Accessible UI Components for your React.. MIT
18 | - redux-toolkit (🥉32 · ⭐ 9.8K · 📉) - The official, opinionated, batteries-included toolset for.. MIT
19 | - react-leaflet (🥉26 · ⭐ 4.7K · 📉) - React components for Leaflet maps. ❗Unlicensed
20 |
21 |
--------------------------------------------------------------------------------
/history/2023-08-17_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - react-table (🥇40 · ⭐ 22K · 📈) - Headless UI for building powerful tables & datagrids for TS/JS -.. MIT
6 | - react-vis (🥈35 · ⭐ 8.5K · 📈) - Data Visualization Components. MIT
7 | - react-leaflet (🥉34 · ⭐ 4.7K · 📈) - React components for Leaflet maps. ❗️Hippocratic-2.1
8 | - alt (🥉31 · ⭐ 3.4K · 💀) - Isomorphic flux implementation. MIT
9 | - react-editor (🥉14 · ⭐ 55 · 💤) - Pure Rich-text Editor with TS & React-hooks. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - Tauri (🥇38 · ⭐ 68K · 📉) - Build smaller, faster, and more secure desktop applications with a.. Apache-2
16 | - sql.js (🥉30 · ⭐ 12K · 📉) - A javascript library to run SQLite on the web. MIT
17 | - ReactPage (🥈30 · ⭐ 9.2K · 📉) - Next-gen, highly customizable content editor for the browser -.. MIT
18 | - react-codemirror (🥉28 · ⭐ 1K · 📉) - CodeMirror 6 component for React. @codemirror.. MIT
19 | - unform (🥉26 · ⭐ 4.5K · 💀) - Performance-focused API for React forms. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2023-08-24_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - mermaid (🥇46 · ⭐ 60K · 📈) - Generation of diagrams like flowcharts or sequence diagrams from text.. MIT
6 | - immutable-js (🥇44 · ⭐ 33K · 📈) - Immutable persistent data collections for Javascript which.. MIT
7 | - echarts (🥈42 · ⭐ 56K · 📈) - Apache ECharts is a powerful, interactive charting and data.. Apache-2
8 | - React Data Table (🥈33 · ⭐ 1.9K · 📈) - A responsive table library with built-in sorting,.. Apache-2
9 | - datav (🥉22 · ⭐ 2.9K · 📈) - Datav is an extremely powerful observability platform, mainly.. Apache-2
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - formik (🥇43 · ⭐ 33K · 📉) - Build forms in React, without the tears. Apache-2
16 | - parcel (🥈42 · ⭐ 43K · 📉) - The zero configuration build tool for the web. MIT
17 | - react-slick (🥇40 · ⭐ 11K · 📉) - React carousel component. MIT
18 | - create-react-app (🥈36 · ⭐ 100K · 📉) - Set up a modern web app by running one command. MIT
19 | - react-fontawesome (🥉32 · ⭐ 3.6K · 💤) - Font Awesome React component. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2023-08-31_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - Next.js (🥇54 · ⭐ 110K · 📈) - The React Framework. MIT
6 | - chakra-ui (🥈40 · ⭐ 34K · 📈) - Simple, Modular & Accessible UI Components for your React.. MIT
7 | - vanilla-extract (🥈35 · ⭐ 8.6K · 📈) - Zero-runtime Stylesheets-in-TypeScript. MIT
8 | - react-codemirror (🥈33 · ⭐ 1.1K · 📈) - CodeMirror 6 component for React. @codemirror.. MIT
9 | - iconify (🥉28 · ⭐ 3K · 📈) - Universal icon framework. One syntax for FontAwesome, Material Design.. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - react-hook-form (🥇44 · ⭐ 37K · 📉) - React Hooks for form state management and validation (Web +.. MIT
16 | - Recharts (🥈43 · ⭐ 21K · 📉) - Redefined chart library built with React and D3. MIT
17 | - tinymce (🥇42 · ⭐ 13K · 📉) - The worlds #1 JavaScript library for rich text editing. Available for.. MIT
18 | - react-icons (🥇39 · ⭐ 10K · 📉) - svg react icons of popular icon packs. MIT
19 | - react-big-calendar (🥈37 · ⭐ 6.8K · 📉) - gcal/outlook like calendar component. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2023-09-07_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - redux (🥇48 · ⭐ 60K · 📈) - Predictable state container for JavaScript apps. MIT
6 | - xstate (🥈43 · ⭐ 25K · 📈) - State machines and statecharts for the modern web. MIT
7 | - react-i18next (🥇42 · ⭐ 8.4K · 📈) - Internationalization for react done right. Using the i18next.. MIT
8 | - Semantic UI React (🥇41 · ⭐ 13K · 📈) - The official Semantic-UI-React integration. MIT
9 | - ncc (🥉33 · ⭐ 8.2K · 📈) - Compile a Node.js project into a single file. Supports TypeScript, binary.. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - cube.js (🥉33 · ⭐ 16K · 📉) - Cube The Semantic Layer for Building Data Applications. ❗Unlicensed
16 | - editor.js (🥈30 · ⭐ 24K · 📉) - A block-style editor with clean JSON output. Apache-2
17 | - sql.js (🥉26 · ⭐ 12K · 💤) - A javascript library to run SQLite on the web. ❗Unlicensed
18 | - mleibman/SlickGrid (🥉26 · ⭐ 6.8K · 💀) - A lightning fast JavaScript grid/spreadsheet. MIT
19 | - ReactPivot (🥉16 · ⭐ 1K · 💀) - React-Pivot is a data-grid component with pivot-table-like.. ❗Unlicensed
20 |
21 |
--------------------------------------------------------------------------------
/history/2023-09-14_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - cube.js (🥉37 · ⭐ 16K · 📈) - Cube The Semantic Layer for Building Data Applications. Apache-2
6 | - editor.js (🥈34 · ⭐ 24K · 📈) - A block-style editor with clean JSON output. Apache-2
7 | - sql.js (🥉31 · ⭐ 12K · 💤) - A javascript library to run SQLite on the web. MIT
8 | - Semiotic (🥉29 · ⭐ 2.4K · 📈) - A data visualization framework combining React & D3. Apache-2
9 | - ReactPivot (🥉22 · ⭐ 1K · 💀) - React-Pivot is a data-grid component with pivot-table-like.. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - d3 (🥇46 · ⭐ 110K · 📉) - Bring data to life with SVG, Canvas and HTML. ISC
16 | - theme-ui (🥈35 · ⭐ 5.1K · 📉) - Build consistent, themeable React apps based on constraint-based.. MIT
17 | - easy-markdown-editor (🥉24 · ⭐ 2K · 📉) - EasyMDE: A simple, beautiful, and embeddable.. MIT
18 | - react-i13n (🥉22 · ⭐ 380 · 📉) - A performant, scalable and pluggable approach to.. ❗Unlicensed
19 | - atomize (🥉20 · ⭐ 1.6K · 💀) - Design System for developers build on styled-components & React JS. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2023-09-21_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - lightGallery (🥉33 · ⭐ 6K · 📈) - A customizable, modular, responsive, lightbox gallery.. ❗️GPL-3.0
6 | - easy-markdown-editor (🥉29 · ⭐ 2K · 📈) - EasyMDE: A simple, beautiful, and embeddable.. MIT
7 | - react-container-query (🥉28 · ⭐ 880 · 📈) - Modular responsive component. MIT
8 | - react-uploady (🥉26 · ⭐ 890 · 📈) - Modern file uploading - components & hooks for React. MIT
9 | - react-i13n (🥉24 · ⭐ 380 · 📈) - A performant, scalable and pluggable approach to instrumenting.. BSD-3
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - React ApexCharts (🥉30 · ⭐ 1.2K · 📉) - React Component for ApexCharts. MIT
16 | - Semiotic (🥉25 · ⭐ 2.4K · 📉) - A data visualization framework combining React & D3. ❗Unlicensed
17 | - react-diagrams (🥉24 · ⭐ 8K · 📉) - a super simple, no-nonsense diagramming library written in.. MIT
18 | - GGEditor (🥉20 · ⭐ 3.4K · 💀) - A visual graph editor based on G6 and React. MIT
19 | - ReactPivot (🥉16 · ⭐ 1K · 💀) - React-Pivot is a data-grid component with pivot-table-like.. ❗Unlicensed
20 |
21 |
--------------------------------------------------------------------------------
/history/2023-09-28_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - React ApexCharts (🥈33 · ⭐ 1.2K · 📈) - React Component for ApexCharts. MIT
6 | - react-diagrams (🥉29 · ⭐ 8K · 📈) - a super simple, no-nonsense diagramming library written in.. MIT
7 | - Semiotic (🥉29 · ⭐ 2.4K · 📈) - A data visualization framework combining React & D3. Apache-2
8 | - GGEditor (🥉25 · ⭐ 3.4K · 💀) - A visual graph editor based on G6 and React. MIT
9 | - ReactPivot (🥉22 · ⭐ 1K · 💀) - React-Pivot is a data-grid component with pivot-table-like.. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - esbuild (🥇45 · ⭐ 36K · 📉) - An extremely fast bundler for the web. MIT
16 | - lerna (🥈43 · ⭐ 35K · 📉) - Lerna is a fast, modern build system for managing and publishing.. MIT
17 | - winston (🥉43 · ⭐ 21K · 📉) - A logger for just about everything. MIT
18 | - echarts (🥈40 · ⭐ 56K · 📉) - Apache ECharts is a powerful, interactive charting and data.. Apache-2
19 | - react-jsonschema-form (🥈38 · ⭐ 13K · 📉) - A React component for building Web forms from JSON.. Apache-2
20 |
21 |
--------------------------------------------------------------------------------
/history/2023-10-05_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - react-redux (🥇46 · ⭐ 23K · 📈) - Official React bindings for Redux. MIT
6 | - echarts (🥈42 · ⭐ 56K · 📈) - Apache ECharts is a powerful, interactive charting and data.. Apache-2
7 | - mantine (🥉33 · ⭐ 22K · 📈) - A fully featured React components library. MIT
8 | - eslint-plugin-jsx-a11y (🥉32 · ⭐ 3.2K · 📈) - Static AST checker for a11y rules on JSX elements. MIT
9 | - liveblocks (🥉31 · ⭐ 2.4K · 📈) - Liveblocks is a real-time collaboration infrastructure for.. Apache-2
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - react-i18next (🥈38 · ⭐ 8.5K · 📉) - Internationalization for react done right. Using the i18next.. MIT
16 | - react-table (🥈35 · ⭐ 23K · 📉) - Headless UI for building powerful tables & datagrids for TS/JS -.. MIT
17 | - cube.js (🥉33 · ⭐ 16K · 📉) - Cube The Semantic Layer for Building Data Applications. ❗Unlicensed
18 | - stitches (🥉27 · ⭐ 7.6K · 📉) - [Not Actively Maintained] CSS-in-JS with near-zero runtime, SSR,.. MIT
19 | - mleibman/SlickGrid (🥉26 · ⭐ 6.8K · 💀) - A lightning fast JavaScript grid/spreadsheet. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2023-10-12_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - react-i18next (🥈41 · ⭐ 8.5K · 📈) - Internationalization for react done right. Using the i18next.. MIT
6 | - react-table (🥇40 · ⭐ 23K · 📈) - Headless UI for building powerful tables & datagrids for TS/JS -.. MIT
7 | - cube.js (🥉37 · ⭐ 16K · 📈) - Cube The Semantic Layer for Building Data Applications. Apache-2
8 | - stitches (🥉31 · ⭐ 7.6K · 📈) - [Not Actively Maintained] CSS-in-JS with near-zero runtime, SSR,.. MIT
9 | - mleibman/SlickGrid (🥉30 · ⭐ 6.8K · 💀) - A lightning fast JavaScript grid/spreadsheet. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - echarts (🥈41 · ⭐ 57K · 📉) - Apache ECharts is a powerful, interactive charting and data.. Apache-2
16 | - reactstrap (🥈41 · ⭐ 11K · 📉) - Simple React Bootstrap 5 components. MIT
17 | - Semantic UI React (🥈40 · ⭐ 13K · 📉) - The official Semantic-UI-React integration. MIT
18 | - i18next (🥉40 · ⭐ 7K · 📉) - i18next: learn once - translate everywhere. MIT
19 | - ncc (🥉33 · ⭐ 8.3K · 📉) - Compile a Node.js project into a single file. Supports TypeScript, binary.. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2023-10-19_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - sweetalert2 (🥇43 · ⭐ 16K · 📈) - A beautiful, responsive, highly customizable and accessible (WAI-.. MIT
6 | - formatjs (🥇43 · ⭐ 14K · 📈) - The monorepo home to all of the FormatJS related libraries, most.. BSD-3
7 | - react-query (🥈42 · ⭐ 37K · 📈) - Powerful asynchronous state management, server-state utilities.. MIT
8 | - react-spectrum (🥈38 · ⭐ 9.6K · 📈) - A collection of libraries and tools that help you build.. Apache-2
9 | - BizCharts (🥈33 · ⭐ 6.1K · 📈) - Powerful data visualization library based on G2 and React. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - lodash (🥈44 · ⭐ 58K · 📉) - A modern JavaScript utility library delivering modularity,.. ❗Unlicensed
16 | - Blueprint (🥈39 · ⭐ 20K · 📉) - A React-based UI toolkit for the web. Apache-2
17 | - Evergreen (🥉27 · ⭐ 12K · 📉) - Evergreen React UI Framework by Segment. MIT
18 | - Radix Primitives (🥉24 · ⭐ 12K · 📉) - Radix Primitives is an open-source UI component library.. MIT
19 | - atomize (🥉20 · ⭐ 1.7K · 📉) - Design System for developers build on styled-components &.. ❗Unlicensed
20 |
21 |
--------------------------------------------------------------------------------
/history/2023-10-26_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - lodash (🥈46 · ⭐ 58K · 📈) - A modern JavaScript utility library delivering modularity, performance,.. MIT
6 | - Blueprint (🥇42 · ⭐ 20K · 📈) - A React-based UI toolkit for the web. Apache-2
7 | - Evergreen (🥉30 · ⭐ 12K · 📈) - Evergreen React UI Framework by Segment. MIT
8 | - Radix Primitives (🥉27 · ⭐ 12K · 📈) - Radix Primitives is an open-source UI component library.. MIT
9 | - atomize (🥉24 · ⭐ 1.7K · 📈) - Design System for developers build on styled-components & React JS. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - motion (🥈29 · ⭐ 20K · 📉) - Open source, production-ready animation and gesture library for React. MIT
16 | - react-dates (🥉26 · ⭐ 12K · 💀) - An easily internationalizable, mobile-friendly datepicker library.. MIT
17 | - log4js-node (🥉25 · ⭐ 5.7K · 📉) - A port of log4js to node.js. ❗Unlicensed
18 | - easy-markdown-editor (🥉23 · ⭐ 2.1K · 📉) - EasyMDE: A simple, beautiful, and embeddable.. MIT
19 | - react-easy-crop (🥉15 · ⭐ 51 · 💀) - Ricardo fork of https://valentinh.github.io/react-easy-crop/. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2023-11-30_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - vite (🥇49 · ⭐ 61K · 📈) - Next generation frontend tooling. Its fast!. MIT
6 | - redux (🥇49 · ⭐ 60K · 📈) - Predictable state container for JavaScript apps. MIT
7 | - react-router (🥇48 · ⭐ 51K · 📈) - Declarative routing for React. MIT
8 | - ant-design-charts (🥈34 · ⭐ 1.7K · 📈) - A React Chart Library. MIT

9 | - sql.js (🥈33 · ⭐ 12K · 📈) - A javascript library to run SQLite on the web. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - three.js (🥇50 · ⭐ 96K · 📉) - JavaScript 3D Library. MIT
16 | - cypress (🥈47 · ⭐ 45K · 📉) - Fast, easy and reliable testing for anything that runs in a browser. MIT
17 | - date-fns (🥈45 · ⭐ 33K · 📉) - Modern JavaScript date utility library. MIT
18 | - immutable-js (🥈42 · ⭐ 33K · 📉) - Immutable persistent data collections for Javascript which.. MIT
19 | - create-react-app (🥈41 · ⭐ 100K · 📉) - Set up a modern web app by running one command. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2023-12-21_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - date-fns (🥈47 · ⭐ 33K · 📈) - Modern JavaScript date utility library. MIT
6 | - polaris-react (🥈41 · ⭐ 5.5K · 📈) - Shopifys design system to help us work together to build a.. MIT
7 | - echarts (🥈40 · ⭐ 57K · 📈) - Apache ECharts is a powerful, interactive charting and data.. Apache-2
8 | - kea (🥉29 · ⭐ 1.9K · 💤) - Production Ready State Management for React. MIT
9 | - redux-first-history (🥉25 · ⭐ 420 · 📈) - Redux history binding support react-router -.. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - lodash (🥈45 · ⭐ 58K · 📉) - A modern JavaScript utility library delivering modularity, performance,.. MIT
16 | - react-hook-form (🥇44 · ⭐ 38K · 📉) - React Hooks for form state management and validation (Web +.. MIT
17 | - react-select (🥇43 · ⭐ 27K · 📉) - The Select Component for React.js. MIT
18 | - downshift (🥈38 · ⭐ 12K · 📉) - A set of primitives to build simple, flexible, WAI-ARIA compliant.. MIT
19 | - codejar (🥉24 · ⭐ 1.6K · 📉) - An embeddable code editor for the browser. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2023-12-28_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - Webpack (🥇52 · ⭐ 64K · 📈) - A bundler for javascript and friends. Packs many modules into a few.. MIT
6 | - lodash (🥈46 · ⭐ 58K · 📈) - A modern JavaScript utility library delivering modularity, performance,.. MIT
7 | - emotion (🥈41 · ⭐ 17K · 📈) - CSS-in-JS library designed for high performance style composition. MIT
8 | - why-did-you-render (🥉31 · ⭐ 10K · 📈) - why-did-you-render by Welldone Software monkey patches.. MIT
9 | - cal-heatmap (🥉31 · ⭐ 2.5K · 📈) - Cal-Heatmap is a javascript charting library to create a time-.. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - Blueprint (🥈39 · ⭐ 20K · 📉) - A React-based UI toolkit for the web. Apache-2
16 | - motion (🥈29 · ⭐ 21K · 📉) - Open source, production-ready animation and gesture library for React. MIT
17 | - aphrodite (🥉27 · ⭐ 5.3K · 💀) - Framework-agnostic CSS-in-JS with support for server-side.. ❗Unlicensed
18 | - react-fontawesome (🥉26 · ⭐ 3.6K · 💀) - Font Awesome React component. MIT
19 | - ckeditor4-react (🥉20 · ⭐ 90 · 📉) - Official CKEditor 4 React component. ❗Unlicensed
20 |
21 |
--------------------------------------------------------------------------------
/history/2024-01-04_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - Blueprint (🥇42 · ⭐ 20K · 📈) - A React-based UI toolkit for the web. Apache-2
6 | - motion (🥇39 · ⭐ 21K · 📈) - Open source, production-ready animation and gesture library for React. MIT
7 | - react-fontawesome (🥉32 · ⭐ 3.6K · 💀) - Font Awesome React component. MIT
8 | - aphrodite (🥉31 · ⭐ 5.3K · 💀) - Framework-agnostic CSS-in-JS with support for server-side.. MIT
9 | - Semiotic (🥉27 · ⭐ 2.4K · 💤) - A data visualization framework combining React & D3. Apache-2
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - axios (🥇50 · ⭐ 100K · 📉) - Promise based HTTP client for the browser and node.js. MIT
16 | - react-redux (🥇46 · ⭐ 23K · 📉) - Official React bindings for Redux. MIT
17 | - react-google-charts (🥉31 · ⭐ 1.5K · 📉) - A thin, typed, React wrapper over Google Charts.. MIT
18 | - Notistack (🥈28 · ⭐ 3.7K · 📉) - Highly customizable notification snackbars (toasts).. ❗Unlicensed

19 | - kea (🥉27 · ⭐ 1.9K · 📉) - Batteries Included State Management for React. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2024-01-18_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - React-Toastify (🥇41 · ⭐ 12K · 📈) - React notification made easy !. MIT
6 | - ant-design-mobile (🥈38 · ⭐ 11K · 📈) - Essential UI blocks for building mobile web apps. MIT
7 | - GGEditor (🥉25 · ⭐ 3.4K · 💀) - A visual graph editor based on G6 and React. MIT
8 | - ckeditor4-react (🥉24 · ⭐ 90 · 📈) - Official CKEditor 4 React component. ❗️ICU
9 | - ReactPivot (🥉23 · ⭐ 1K · 💀) - React-Pivot is a data-grid component with pivot-table-like.. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - axios (🥉38 · ⭐ 100K · 📉) - Promise based HTTP client for the browser and node.js. MIT
16 | - Tailwind CSS (🥈35 · ⭐ 75K · 📉) - A utility-first CSS framework for rapid UI development. MIT
17 | - Next.js (🥉34 · ⭐ 120K · 📉) - The React Framework. MIT
18 | - editor.js (🥈30 · ⭐ 26K · 📉) - A block-style editor with clean JSON output. Apache-2
19 | - iconify (🥉26 · ⭐ 3.4K · 📉) - Universal icon framework. One syntax for FontAwesome, Material Design.. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2024-01-25_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - Next.js (🥇54 · ⭐ 120K · 📈) - The React Framework. MIT
6 | - axios (🥇51 · ⭐ 100K · 📈) - Promise based HTTP client for the browser and node.js. MIT
7 | - Tailwind CSS (🥇49 · ⭐ 76K · 📈) - A utility-first CSS framework for rapid UI development. MIT
8 | - react-slick (🥇43 · ⭐ 11K · 📈) - React carousel component. MIT
9 | - editor.js (🥈34 · ⭐ 26K · 📈) - A block-style editor with clean JSON output. Apache-2
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - vite (🥇48 · ⭐ 63K · 📉) - Next generation frontend tooling. Its fast!. MIT
16 | - xstate (🥈43 · ⭐ 26K · 📉) - Actor-based state management & orchestration for complex app logic. MIT
17 | - radium (🥉30 · ⭐ 7.4K · 💀) - A toolchain for React component styling. MIT
18 | - react-responsive (🥉30 · ⭐ 6.8K · 💤) - CSS media queries in react - for responsive design, and.. MIT
19 | - react-flatpickr (🥉23 · ⭐ 580 · 💤) - flatpickr for React. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2024-02-01_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - immutable-js (🥇44 · ⭐ 33K · 📈) - Immutable persistent data collections for Javascript which.. MIT
6 | - loglevel (🥉41 · ⭐ 2.5K · 📈) - Minimal lightweight logging for JavaScript, adding reliable log.. MIT
7 | - polished (🥈39 · ⭐ 7.6K · 📈) - A lightweight toolset for writing styles in JavaScript. MIT
8 | - react-google-charts (🥈33 · ⭐ 1.5K · 💤) - A thin, typed, React wrapper over Google Charts.. MIT
9 | - react-flatpickr (🥉26 · ⭐ 580 · 💤) - flatpickr for React. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - eslint-plugin-react (🥇45 · ⭐ 8.7K · 📉) - React-specific linting rules for ESLint. MIT
16 | - lerna (🥈43 · ⭐ 35K · 📉) - Lerna is a fast, modern build system for managing and publishing.. MIT
17 | - relay (🥉33 · ⭐ 18K · 📉) - Relay is a JavaScript framework for building data-driven React.. MIT
18 | - react-refetch (🥉24 · ⭐ 3.4K · 💤) - A simple, declarative, and composable way to fetch.. ❗Unlicensed
19 | - codejar (🥉23 · ⭐ 1.7K · 📉) - An embeddable code editor for the browser. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2024-02-15_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - Webpack (🥇54 · ⭐ 64K · 📈) - A bundler for javascript and friends. Packs many modules into a few.. MIT
6 | - enzyme (🥈43 · ⭐ 20K · 📈) - JavaScript Testing utilities for React. MIT
7 | - cube.js (🥈40 · ⭐ 17K · 📈) - Cube The Semantic Layer for Building Data Applications. Apache-2
8 | - fullcalendar-react (🥉31 · ⭐ 1.8K · 📈) - The official React Component for FullCalendar. MIT
9 | - atomize (🥉23 · ⭐ 1.7K · 📈) - Design System for developers build on styled-components & React JS. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - react-spring (🥇42 · ⭐ 27K · 📉) - A spring physics based React animation library. MIT
16 | - react-select (🥇42 · ⭐ 27K · 📉) - The Select Component for React.js. MIT
17 | - mobx (🥈41 · ⭐ 27K · 📉) - Simple, scalable state management. MIT
18 | - umi (🥈40 · ⭐ 15K · 📉) - A framework in react community. MIT
19 | - react-jsonschema-form (🥈38 · ⭐ 13K · 📉) - A React component for building Web forms from JSON.. Apache-2
20 |
21 |
--------------------------------------------------------------------------------
/history/2024-02-29_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - eslint-plugin-react (🥈44 · ⭐ 8.8K · 📈) - React-specific linting rules for ESLint. MIT
6 | - cube.js (🥈41 · ⭐ 17K · 📈) - Cube The Semantic Layer for Building Data Applications. Apache-2
7 | - cleave.js (🥈35 · ⭐ 18K · 📈) - Format input text content when you are typing... Apache-2
8 | - components (🥉33 · ⭐ 2.9K · 📈) - An implementation of GitHubs Primer Design System using React. MIT
9 | - muuri (🥉31 · ⭐ 11K · 💀) - Infinite responsive, sortable, filterable and draggable layouts. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - reselect (🥇44 · ⭐ 19K · 📉) - Selector library for Redux. MIT
16 | - react-spring (🥇42 · ⭐ 27K · 📉) - A spring physics based React animation library. MIT
17 | - mobx (🥈41 · ⭐ 27K · 📉) - Simple, scalable state management. MIT
18 | - echarts (🥈40 · ⭐ 58K · 📉) - Apache ECharts is a powerful, interactive charting and data.. Apache-2
19 | - datav (🥉22 · ⭐ 3.5K · 📉) - Observe any stack, any service and any data at anywhere, using.. ❗Unlicensed
20 |
21 |
--------------------------------------------------------------------------------
/history/2024-03-07_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - vite (🥇49 · ⭐ 64K · 📈) - Next generation frontend tooling. Its fast!. MIT
6 | - eslint-plugin-react (🥇46 · ⭐ 8.8K · 📈) - React-specific linting rules for ESLint. MIT
7 | - Slate (🥇42 · ⭐ 29K · 📈) - A completely customizable framework for building rich text editors... MIT
8 | - echarts (🥈41 · ⭐ 58K · 📈) - Apache ECharts is a powerful, interactive charting and data.. Apache-2
9 | - nivo (🥈37 · ⭐ 12K · 📈) - nivo provides a rich set of dataviz components, built on top of the.. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - BizCharts (🥉28 · ⭐ 6.1K · 📉) - Powerful data visualization library based on G2 and React. ❗Unlicensed
16 | - react-refetch (🥉24 · ⭐ 3.4K · 💤) - A simple, declarative, and composable way to fetch.. ❗Unlicensed
17 | - Semiotic (🥉24 · ⭐ 2.4K · 💤) - A data visualization framework combining React & D3. ❗Unlicensed
18 | - GGEditor (🥉21 · ⭐ 3.4K · 💀) - A visual graph editor based on G6 and React. MIT
19 | - react-easy-crop (🥉16 · ⭐ 53 · 💀) - Ricardo fork of https://valentinh.github.io/react-easy-crop/. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2024-03-14_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - BizCharts (🥉31 · ⭐ 6.1K · 📈) - Powerful data visualization library based on G2 and React. MIT
6 | - react-refetch (🥉27 · ⭐ 3.4K · 💤) - A simple, declarative, and composable way to fetch data for.. MIT
7 | - Semiotic (🥉27 · ⭐ 2.4K · 💤) - A data visualization framework combining React & D3. Apache-2
8 | - react-easy-crop (🥉27 · ⭐ 2.1K · 💀) - Ricardo fork of https://valentinh.github.io/react-easy-.. MIT
9 | - GGEditor (🥉25 · ⭐ 3.4K · 💀) - A visual graph editor based on G6 and React. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - Bit (🥉31 · ⭐ 17K · 📉) - Build, distribute, and collaborate on components. ❗Unlicensed
16 | - editor.js (🥈30 · ⭐ 26K · 📉) - A block-style editor with clean JSON output. Apache-2
17 | - baseweb (🥉27 · ⭐ 8.6K · 📉) - A React Component library implementing the Base design language. MIT
18 | - why-did-you-render (🥉25 · ⭐ 11K · 📉) - why-did-you-render by Welldone Software monkey patches.. MIT
19 | - Electron (🥉6 · 📉) - ❗Unlicensed
20 |
21 |
--------------------------------------------------------------------------------
/history/2024-04-04_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - immutable-js (🥇44 · ⭐ 33K · 📈) - Immutable persistent data collections for Javascript which.. MIT
6 | - mobx (🥈43 · ⭐ 27K · 📈) - Simple, scalable state management. MIT
7 | - react-spring (🥇41 · ⭐ 27K · 📈) - A spring physics based React animation library. MIT
8 | - Sortable (🥇39 · ⭐ 29K · 📈) - Reorderable drag-and-drop lists for modern browsers and touch.. MIT
9 | - mobx-react (🥉28 · ⭐ 4.9K · 💀) - React bindings for MobX. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - sql.js (🥉32 · ⭐ 12K · 📉) - A javascript library to run SQLite on the web. ❗Unlicensed
16 | - editor.js (🥈30 · ⭐ 27K · 📉) - A block-style editor with clean JSON output. Apache-2
17 | - react-fontawesome (🥉26 · ⭐ 3.6K · 💀) - Font Awesome React component. MIT
18 | - easy-markdown-editor (🥉25 · ⭐ 2.2K · 📉) - EasyMDE: A simple, beautiful, and embeddable.. MIT
19 | - react-easy-crop (🥉16 · ⭐ 53 · 💀) - Ricardo fork of https://valentinh.github.io/react-easy-crop/. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2024-04-11_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - editor.js (🥈34 · ⭐ 27K · 📈) - A block-style editor with clean JSON output. Apache-2
6 | - router (🥈33 · ⭐ 6.9K · 💀) - Next generation Routing for React. MIT
7 | - react-fontawesome (🥉32 · ⭐ 3.6K · 💀) - Font Awesome React component. MIT
8 | - easy-markdown-editor (🥈29 · ⭐ 2.2K · 📈) - EasyMDE: A simple, beautiful, and embeddable.. MIT
9 | - react-easy-crop (🥉27 · ⭐ 2.1K · 💀) - Ricardo fork of https://valentinh.github.io/react-easy-.. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - redux (🥇49 · ⭐ 60K · 📉) - A JS library for predictable global state management. MIT
16 | - Chart.js (🥇46 · ⭐ 63K · 📉) - Simple HTML5 Charts using the canvas tag. MIT
17 | - react-redux (🥇46 · ⭐ 23K · 📉) - Official React bindings for Redux. MIT
18 | - react-select (🥇42 · ⭐ 27K · 📉) - The Select Component for React.js. MIT
19 | - react-icons (🥈38 · ⭐ 11K · 📉) - svg react icons of popular icon packs. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2024-04-18_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - react-redux (🥇47 · ⭐ 23K · 📈) - Official React bindings for Redux. MIT
6 | - zustand (🥈42 · ⭐ 42K · 📈) - Bear necessities for state management in React. MIT
7 | - react-icons (🥈40 · ⭐ 11K · 📈) - svg react icons of popular icon packs. MIT
8 | - react-day-picker (🥈37 · ⭐ 5.7K · 📈) - DayPicker is a customizable date picker component for.. MIT
9 | - react-testing-library (🥉36 · ⭐ 19K · 📈) - Simple and complete React DOM testing utilities that.. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - lodash (🥈45 · ⭐ 59K · 📉) - A modern JavaScript utility library delivering modularity, performance,.. MIT
16 | - Styled Components (🥇44 · ⭐ 40K · 📉) - Visual primitives for the component age. Use the best.. MIT
17 | - formatjs (🥇41 · ⭐ 14K · 📉) - The monorepo home to all of the FormatJS related libraries, most.. BSD-3
18 | - React-Toastify (🥇39 · ⭐ 12K · 📉) - React notification made easy !. MIT
19 | - next-enterprise (🥉16 · ⭐ 5.4K · 📉) - An enterprise-grade Next.js boilerplate for high-.. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2024-05-02_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - motion (🥇43 · ⭐ 22K · 📈) - Open source, production-ready animation and gesture library for React. MIT
6 | - react-rnd (🥈34 · ⭐ 3.7K · 📈) - A resizable and draggable component for React. MIT
7 | - glide-data-grid (🥈32 · ⭐ 3.4K · 📈) - Glide Data Grid is a no compromise, outrageously react.. MIT
8 | - kea (🥉28 · ⭐ 1.9K · 📈) - Batteries Included State Management for React. MIT
9 | - react-spaces (🥈26 · ⭐ 1.2K · 📈) - React components that allow you to divide a page or container.. MIT
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - three.js (🥇50 · ⭐ 99K · 📉) - JavaScript 3D Library. MIT
16 | - date-fns (🥈46 · ⭐ 34K · 📉) - Modern JavaScript date utility library. MIT
17 | - react-redux (🥇46 · ⭐ 23K · 📉) - Official React bindings for Redux. MIT
18 | - Gatsby (🥈45 · ⭐ 55K · 📉) - The best React-based framework with performance, scalability and.. MIT
19 | - immutable-js (🥇43 · ⭐ 33K · 📉) - Immutable persistent data collections for Javascript which.. MIT
20 |
21 |
--------------------------------------------------------------------------------
/history/2024-05-23_changes.md:
--------------------------------------------------------------------------------
1 | ## 📈 Trending Up
2 |
3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._
4 |
5 | - bulma (🥇43 · ⭐ 49K · 📈) - Modern CSS framework based on Flexbox. MIT
6 | - formatjs (🥇43 · ⭐ 14K · 📈) - The monorepo home to all of the FormatJS related libraries, most.. BSD-3
7 | - react-fontawesome (🥈34 · ⭐ 3.7K · 📈) - Font Awesome React component. MIT
8 | - trunx (🥉21 · ⭐ 64 · 📈) - Super Saiyan React components, son of awesome Bulma. MIT
9 | - talkr (🥉18 · ⭐ 240 · 📈) - Talkr is the lightest i18n provider for React applications. It supports.. ISC
10 |
11 | ## 📉 Trending Down
12 |
13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._
14 |
15 | - vite (🥇47 · ⭐ 65K · 📉) - Next generation frontend tooling. Its fast!. MIT
16 | - reselect (🥈42 · ⭐ 19K · 📉) - Selector library for Redux. MIT
17 | - react-slick (🥇41 · ⭐ 12K · 📉) - React carousel component. MIT
18 | - React-Move (🥉26 · ⭐ 6.6K · 💀) - React Move | Beautiful, data-driven animations for React. MIT
19 | - rumble-charts (🥉18 · ⭐ 350 · 💀) - React components for building composable and flexible charts. MIT
20 |
21 |
--------------------------------------------------------------------------------