UI Components

Open-source projects categorized as UI Components

Top 23 UI Component Open-Source Projects

  • storybook

    Storybook is a frontend workshop for building UI components and pages in isolation. Made for UI development, testing, and documentation.

    Project mention: Announcing AnalogJS 1.0 🚀 | dev.to | 2024-03-14

    We are continuing to make building fullstack websites and application with Analog and Angular as seamless as possible, and extending the Angular ecosystem through integrations with Astro, Nx, [Vitest]https://analogjs.org/docs/features/testing/vitest, Storybook, and more.

  • Semantic UI

    Semantic is a UI component framework based around useful principles from natural language.

    Project mention: Should you split that file? | news.ycombinator.com | 2023-12-01

    1. The author links to this file as an example: https://github.com/Semantic-Org/Semantic-UI/blob/49b9cbf47c1... . How would you structure it better than it currently is without using sections?

    2. So you have a class that has a bunch of getters and setters. Let's just assume that "generate them automatically" is not an option. You want to make it really easy to see the part of the class which is getters, and the part of the class which is setters, and then skim past that. How do you do it?

    3. So you have a file that defines 3 data structures. Each data structure has a definition, a bunch of functions for parsing it, and a bunch of functions for serializing it. The author suggests that you split the file into 3 sections for the types, with subsections each for the definition, parsing, and serializing. How would you do it? Let's say the language is Rust or Typescript.

  • SurveyJS

    Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App. With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.

  • vuetify

    🐉 Vue Component Framework

    Project mention: Top Material Design 3 web frameworks of 2024 | dev.to | 2024-01-23

    👉 https://vuetifyjs.com

  • Swiper

    Most modern mobile touch slider with hardware accelerated transitions

    Project mention: Slider with two thumbs | /r/reactjs | 2023-07-07
  • chakra-ui

    ⚡️ Simple, Modular & Accessible UI Components for your React Applications

    Project mention: Exploring 5 Top UI Frameworks for React | dev.to | 2024-03-26

    1. Chakra UI

  • react-beautiful-dnd

    Beautiful and accessible drag and drop for lists with React

    Project mention: The 5 Most Important Features on phived.com | dev.to | 2024-02-23

    A huge win for the user experience using react-beautiful-dnd.

  • slate

    A completely customizable framework for building rich text editors. (Currently in beta.) (by ianstormtaylor)

    Project mention: 5 Not-So-Typical React Libraries for an Outstanding Project | dev.to | 2023-08-03
  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

  • sortablejs

    Reorderable drag-and-drop lists for modern browsers and touch devices. No jQuery or framework required.

    Project mention: Multi-column drag and drop with SortableJS and Stimulus | dev.to | 2024-02-18

    Well, it worked. But only for one case: dragging stuff within only one column. You see, stimulus-sortable uses SortableJS under the hood, which is powerful.

  • gradio

    Build and share delightful machine learning apps, all in Python. 🌟 Star to support our work!

    Project mention: Show HN: Dropbase – Build internal web apps with just Python | news.ycombinator.com | 2023-12-05

    There's also that library all the AI models started using that gives you a public URL to share. After researching it: https://www.gradio.app/ is the link.

    It's used specifically for making simple UIs for machine learning apps. But I guess technically you could use it for anything.

  • react-select

    The Select Component for React.js

    Project mention: Using React Select with Formik | dev.to | 2024-03-18

    I decided that I wanted to use React Select for the player input, specifically React Select Creatable, which allows users to create a new option if the one that they are looking for does not exist. With this approach, if the player that the user is trying to add as one of the game's players is not already in the database, they can add the player directly from the React Select component instead of having to do this though the seperate form for adding a new player.

  • react-virtualized

    React components for efficiently rendering large lists and tabular data

    Project mention: The Secret Weapon of Top Developers: 7 React JS Libraries You Can't Afford to Ignore | dev.to | 2024-02-21

    You may increase the rendering efficiency of tabular and huge list data by using the React Virtualized module. React apps perform better overall when the quantity of requests and DOM elements is limited. React Virtualized is comparable to many other tools; however, what sets it apart from the competition is the sheer volume of features and excellent upkeep.

  • react-native-elements

    Cross-Platform React Native UI Toolkit

    Project mention: Getting started with React Native authentication | dev.to | 2023-11-20

    Once we've set up the storage mechanism, building an email and password sign in flow becomes pretty straight forward. Install react-native-elements to get some nice cross platform button and input fields:

  • mantine

    A fully featured React components library

    Project mention: Building a Fast, Efficient Web App: The Technology Stack of PromptSmithy Explained | dev.to | 2024-03-26

    While I have experience with Tailwind and frontend development, I don’t really have the patience to use it. I usually end up using something like Mantine, which is a complete component library UI kit, or Daisy UI, which is a component library built on top of Tailwind. Shadcn/ui is quite similar to Daisy in this sense, but being able to customize the individual components, since they get installed to your components folder, made development more streamlined and more customizable. On top of that being able to change my components style with natural language thanks to v0 made development super easy and fast. Shadcn may be too minimalist of a style for some, but thanks to all the components being local, you can customize them quickly and easily!

  • react-table

    🤖 Headless UI for building powerful tables & datagrids for TS/JS - React-Table, Vue-Table, Solid-Table, Svelte-Table

    Project mention: Nx - Highlights of 2023 | dev.to | 2023-12-28

    Tanstack - Tanstack has evolved to an entire ecosystem consisting of the famous Tanstack (or React) Query, Tanstack Table, now also Tanstack Router and Tanstack Form. It started with Tanstack Query, which adopted Nx and Nx Cloud. Zack talked about this collab with Dominik, and we also had Dominik on our Nx live stream. Now, all the above-mentioned Tanstack libs have adopted Nx, and there's more coming.

  • tiptap

    The headless rich text editor framework for web artisans.

    Project mention: Encrypted Note Editor App In React Native | dev.to | 2024-03-04

    The Editor: The core of our app is the editor. We need an easy to use and robust rich text editor, that supports all of the features we want such as: headings, lists, placeholders, markdown, color, images, bold italic etc… For this we will use @10play/tentap-editor which is a rich text editor for react native based on Tiptap.

  • react-dnd

    Drag and Drop for React

    Project mention: Curious case of Drag and Drop | dev.to | 2024-01-30

    react-dnd is quite powerful but a bit complex and requires some getting used to.

  • NativeBase

    Mobile-first, accessible components for React Native & Web to build consistent UI across Android, iOS and Web.

    Project mention: Flash-cards app with OpenAI | dev.to | 2023-10-19

    Native-base

  • lexical

    Lexical is an extensible text editor framework that provides excellent reliability, accessibility and performance.

    Project mention: Wax: The Word Processor for the Web | news.ycombinator.com | 2024-02-26

    Lexical (https://lexical.dev/) is really nice to use and doesn't use Prosemirror or CKEditor.

  • react-window

    React components for efficiently rendering large lists and tabular data

    Project mention: Virtual Scrolling in React: Implementation from scratch and using react-window | dev.to | 2023-11-05

    As we have seen in the previous section we can implement virtual scrolling from scratch. In this section, we'll discuss a third-party tool called react-window that allows us to implement virtual scrolling in a much easier way.

  • naive-ui

    A Vue 3 Component Library. Fairly Complete. Theme Customizable. Uses TypeScript. Fast.

    Project mention: Vue UI kits/component libraries? | /r/vuejs | 2023-12-09

    You can also check NaiveUI https://www.naiveui.com/

  • TinyMCE

    The world's #1 JavaScript library for rich text editing. Available for React, Vue and Angular

    Project mention: TinyMCE (also) moving from MIT to GPL | news.ycombinator.com | 2024-03-27

    TinyMCE provided a bit more information about this change in a GitHub discussion thread here: https://github.com/tinymce/tinymce/discussions/9496

    As I posted there, this directly affects my open source project which is heavily tied to TinyMCE so I may end up forking, and reducing down to what my project needs to reduce maintenance scope & burden.

    TinyMCE have been jumping around with their licensing. They were under LGPL, with some (what I believe were) misleading guidance into meeting the LGPL (they specified rules about keeping specific branding elements). They then jumped to MIT, and since moved some of the open plugins to their commercial offering. Now they're making this change.

  • primitives

    Radix Primitives is an open-source UI component library for building high-quality, accessible design systems and web apps. Maintained by @workos.

    Project mention: Radix Primitives: an open-source UI component library | news.ycombinator.com | 2024-03-20
  • react-content-loader

    ⚪ SVG-Powered component to easily create skeleton loadings.

  • WorkOS

    The modern identity platform for B2B SaaS. The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning.

NOTE: The open source projects on this list are ordered by number of github stars. The number of mentions indicates repo mentiontions in the last 12 Months or since we started tracking (Dec 2020). The latest post mention was on 2024-03-27.

UI Components related posts

Index

What are some of the best open-source UI Component projects? This list will help you:

Project Stars
1 storybook 82,448
2 Semantic UI 50,969
3 vuetify 38,881
4 Swiper 38,325
5 chakra-ui 36,354
6 react-beautiful-dnd 32,204
7 slate 28,852
8 sortablejs 28,525
9 gradio 27,927
10 react-select 27,180
11 react-virtualized 25,873
12 react-native-elements 24,506
13 mantine 23,889
14 react-table 23,868
15 tiptap 23,366
16 react-dnd 20,416
17 NativeBase 19,971
18 lexical 17,006
19 react-window 15,177
20 naive-ui 14,977
21 TinyMCE 14,197
22 primitives 13,863
23 react-content-loader 13,300
The modern identity platform for B2B SaaS
The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning.
workos.com