<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Forem: ThemeSelection</title>
    <description>The latest articles on Forem by ThemeSelection (@themeselection).</description>
    <link>https://forem.com/themeselection</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Forganization%2Fprofile_image%2F7642%2F0f558665-6cea-4d27-bbcd-51c7c8426fdc.png</url>
      <title>Forem: ThemeSelection</title>
      <link>https://forem.com/themeselection</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/themeselection"/>
    <language>en</language>
    <item>
      <title>How to Use Bootstrap Icons? - Guide with Examples 👨🏻‍💻</title>
      <dc:creator>Ajay Patel</dc:creator>
      <pubDate>Thu, 18 Sep 2025 13:30:54 +0000</pubDate>
      <link>https://forem.com/themeselection/how-to-use-bootstrap-icons-guide-with-examples-455b</link>
      <guid>https://forem.com/themeselection/how-to-use-bootstrap-icons-guide-with-examples-455b</guid>
      <description>&lt;p&gt;Icons are the unsung heroes of web design, adding visual flair and intuitive navigation to your React projects.&lt;/p&gt;

&lt;p&gt;Whether you’re building a sleek dashboard or a vibrant e-commerce site, the right icon library can make your user interface pop while keeping things functional.&lt;/p&gt;

&lt;p&gt;In this guide, we’ll show you how to easily integrate and use Bootstrap Icons in your web projects. Whether you're looking to add icons quickly with a CDN or customize them with CSS, this tutorial will walk you through every step. &lt;/p&gt;

&lt;p&gt;By the end, you’ll have the skills to implement these scalable icons in your web applications to enhance user experience and improve your site’s design.&lt;/p&gt;

&lt;p&gt;Now, let's begin:&lt;/p&gt;

&lt;h2&gt;
  
  
  What are Bootstrap Icons?
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fz8cii03ay0l0cjzzvalx.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fz8cii03ay0l0cjzzvalx.png" alt="What are bootstrap Icons"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Bootstrap Icons is an open-source library created by the Bootstrap team. It provides a wide range of scalable vector icons that are easily customizable with CSS. Built in SVG format, these icons ensure high-quality visuals that maintain their sharpness across various screen sizes.&lt;/p&gt;

&lt;h3&gt;
  
  
  Key features:
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;1,500+ icons to choose from&lt;/li&gt;
&lt;li&gt;Scalable, high-quality SVG visuals&lt;/li&gt;
&lt;li&gt;Fully customizable with CSS&lt;/li&gt;
&lt;li&gt;Works well with any web framework, not just Bootstrap&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Installing Bootstrap Icons
&lt;/h2&gt;

&lt;p&gt;There are two main ways to add Bootstrap Icons to your project: using a CDN or downloading the icons locally.&lt;/p&gt;

&lt;h3&gt;
  
  
  1. Using a CDN
&lt;/h3&gt;

&lt;p&gt;The quickest and easiest way to get started with Bootstrap Icons is through a CDN. All you need to do is add the following link to your HTML &lt;code&gt;&amp;lt;head&amp;gt;&lt;/code&gt; :&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;link href="https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css" rel="stylesheet"&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  2. Downloading the Icons
&lt;/h3&gt;

&lt;p&gt;If you'd rather host the icons yourself, you can download them and add them to your project:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Go to  &lt;a href="https://icons.getbootstrap.com/?utm_source=chatgpt.com" rel="noopener noreferrer"&gt;Bootstrap Icons&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Click the "Download" button to get the &lt;code&gt;.zip&lt;/code&gt; file&lt;/li&gt;
&lt;li&gt;Extract the files and include them in your project directory&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Then, link the downloaded CSS file in your HTML:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;link href="path/to/bootstrap-icons.css" rel="stylesheet"&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  3. Using Bootstrap Icons in HTML
&lt;/h3&gt;

&lt;p&gt;Once Bootstrap Icons are included in your project, you can easily start using them in your HTML.&lt;/p&gt;

&lt;h4&gt;
  
  
  Basic Usage
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;To add an icon, just use the &lt;code&gt;&amp;lt;i&amp;gt;&lt;/code&gt; tag with the appropriate class name:&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fitntm5c7o4a6c4igfbn1.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fitntm5c7o4a6c4igfbn1.png" alt="Home icon"&gt;&lt;/a&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;i class="bi bi-house-door"&amp;gt;&amp;lt;/i&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This will display the "house door" icon.&lt;/p&gt;

&lt;h4&gt;
  
  
  Customizing Size and Color
&lt;/h4&gt;

&lt;p&gt;&lt;iframe height="600" src="https://codepen.io/Vatsal-Kachhadiya/embed/YPwzKPv?height=600&amp;amp;default-tab=result&amp;amp;embed-version=2"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;You can easily customize the icon’s size, color, and more using simple CSS:
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;i class="bi bi-house-door" style="font-size: 2rem; color: #007bff;"&amp;gt;&amp;lt;/i&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You can also control the size using predefined classes like bi-lg, bi-2x, bi-3x, etc.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;i class="bi bi-house-door bi-3x"&amp;gt;&amp;lt;/i&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This will make the icon three times bigger.&lt;/p&gt;

&lt;h3&gt;
  
  
  4. Advanced customization
&lt;/h3&gt;

&lt;p&gt;You can make Bootstrap Icons even more interesting by adding hover effects or animations.&lt;/p&gt;

&lt;h4&gt;
  
  
  Hover Effects
&lt;/h4&gt;

&lt;p&gt;&lt;iframe height="600" src="https://codepen.io/Vatsal-Kachhadiya/embed/EaPxYmw?height=600&amp;amp;default-tab=result&amp;amp;embed-version=2"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Change the icon's color when the user hovers over it:
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;i class="bi bi-heart" style="font-size: 2rem;" class="icon-hover"&amp;gt;&amp;lt;/i&amp;gt;

&amp;lt;style&amp;gt;
  .icon-hover:hover {
    color: red;
    cursor: pointer;
  }
&amp;lt;/style&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h4&gt;
  
  
  Animations
&lt;/h4&gt;

&lt;p&gt;&lt;iframe height="600" src="https://codepen.io/Vatsal-Kachhadiya/embed/xbZxKXY?height=600&amp;amp;default-tab=result&amp;amp;embed-version=2"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Animate the icons using CSS keyframes. For example, you can make the icon rotate:
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;i class="bi bi-arrow-repeat" style="font-size: 2rem;" class="icon-spin"&amp;gt;&amp;lt;/i&amp;gt;

&amp;lt;style&amp;gt;
  .icon-spin {
    animation: spin 2s linear infinite;
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
&amp;lt;/style&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This will make the icon rotate continuously.&lt;/p&gt;

&lt;h3&gt;
  
  
  5. Using Icons with Bootstrap Components
&lt;/h3&gt;

&lt;p&gt;Bootstrap Icons work perfectly with other Bootstrap components. Here’s how you can use them with buttons, navigation, and more.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Example with a Button:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgca2iedlc4zgy7r7tldj.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgca2iedlc4zgy7r7tldj.png" alt="Button"&gt;&lt;/a&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;button class="btn btn-primary"&amp;gt;
  &amp;lt;i class="bi bi-check-circle"&amp;gt;&amp;lt;/i&amp;gt; Submit
&amp;lt;/button&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Example with Navigation:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;nav&amp;gt;
  &amp;lt;ul class="nav"&amp;gt;
    &amp;lt;li class="nav-item"&amp;gt;
      &amp;lt;a class="nav-link" href="#"&amp;gt;
        &amp;lt;i class="bi bi-house-door"&amp;gt;&amp;lt;/i&amp;gt; Home
      &amp;lt;/a&amp;gt;
    &amp;lt;/li&amp;gt;
  &amp;lt;/ul&amp;gt;
&amp;lt;/nav&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  6. Accessibility Considerations
&lt;/h3&gt;

&lt;p&gt;To ensure your icons are accessible, consider adding &lt;code&gt;aria-label&lt;/code&gt; or using the &lt;code&gt;&amp;lt;svg&amp;gt;&lt;/code&gt; version for better screen reader support.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Example for an icon with &lt;code&gt;aria-label&lt;/code&gt; :&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fsd6gm1k6xbjc8fnszkal.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fsd6gm1k6xbjc8fnszkal.png" alt="Icon with aria lable"&gt;&lt;/a&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;i class="bi bi-eye" aria-label="View"&amp;gt;&amp;lt;/i&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;If you’re using the SVG version, add aria-hidden="true" :&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;svg class="bi" xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" viewBox="0 0 16 16"&amp;gt;
  &amp;lt;path d="..."&amp;gt;&amp;lt;/path&amp;gt;
&amp;lt;/svg&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;If you want more detailed information or advanced usage options, you can refer to the official &lt;a href="https://icons.getbootstrap.com/#usage" rel="noopener noreferrer"&gt;Bootstrap Icons documentation&lt;/a&gt;.&lt;/p&gt;




&lt;p&gt;You can also consider using Iconify for icons in your bootstrap projects. For example, you can check the Sneat &lt;a href="https://demos.themeselection.com/sneat-bootstrap-html-admin-template/documentation/Icons.html" rel="noopener noreferrer"&gt;Bootstrap Icons Examples&lt;/a&gt; which uses the iconify for the icons.&lt;/p&gt;

&lt;p&gt;Iconify allows you to easily integrate SVG icons into your project. It simplifies the process of adding scalable vector icons without relying on multiple libraries, providing access to thousands of icons in a single package.&lt;/p&gt;

&lt;p&gt;Sneat &lt;a href="https://themeselection.com/item/category/bootstrap-templates/" rel="noopener noreferrer"&gt;bootstrap template&lt;/a&gt; comes with feature-rich and highly customizable dashboard which can be used for any kind of projects such as CRM, eCommerce, banking apps &amp;amp; much more.&lt;/p&gt;




&lt;h2&gt;
  
  
  Why use Bootstrap icons?
&lt;/h2&gt;

&lt;p&gt;Bootstrap Icons offer several advantages for web development projects:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Easy Integration:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Bootstrap Icons are simple to add to your project. Just include the CSS file, and you’re set, no complex setup required.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Scalable &amp;amp; High-Quality:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Built in SVG format, these icons stay sharp and clear on any screen resolution, ensuring your website looks great everywhere.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Lightweight &amp;amp; No Dependencies:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;No extra JavaScript or complex libraries required, just pure CSS and icons, keeping your site fast and efficient.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Fully Customizable:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Easily adjust the size, color, and style of your icons with just a bit of CSS, letting you align them with your site's design.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Huge Library:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;With over 1,500 icons, you’ll have everything you need for your project, whether you're building a simple webpage or a complex app.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Free &amp;amp; Open-Source:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Bootstrap Icons are free to use under the MIT License, so you can use them in any project without worrying about licensing fees.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;In this guide, we've shown you how to integrate and customize Bootstrap Icons in your web projects. From CDN integration to styling with CSS, these icons offer a flexible way to enhance your UI. Whether for personal or professional projects, they’re easy to implement and fully customizable.&lt;/p&gt;

&lt;p&gt;Now that you know how to use them, it's time to add Bootstrap Icons to your next project for a sleek, modern look. Happy coding!&lt;/p&gt;

</description>
      <category>bootstrap</category>
      <category>programming</category>
      <category>webdev</category>
      <category>beginners</category>
    </item>
    <item>
      <title>🚀 How to Use FlyonUI Block with AI Tools?</title>
      <dc:creator>Pruthvi prajapati</dc:creator>
      <pubDate>Wed, 30 Jul 2025 12:16:10 +0000</pubDate>
      <link>https://forem.com/themeselection/how-to-use-flyonui-block-with-ai-tools-5b83</link>
      <guid>https://forem.com/themeselection/how-to-use-flyonui-block-with-ai-tools-5b83</guid>
      <description>&lt;p&gt;Welcome to this in-depth tutorial on how to build a modern, AI-assisted landing page for a BBQ restaurant using &lt;strong&gt;FlyonUI&lt;/strong&gt;, &lt;strong&gt;Copy Prompt&lt;/strong&gt;, and &lt;strong&gt;Context7 MCP&lt;/strong&gt; — all inside a &lt;strong&gt;Next.js&lt;/strong&gt; project.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;⚡ Whether you're a developer looking to speed up UI creation or someone curious about integrating AI tools into your dev workflow, this guide will walk you through every step.&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  Table of Contents
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;👨‍🏫 Introduction&lt;/li&gt;
&lt;li&gt;
🧱 What Are FlyonUI Blocks?

&lt;ul&gt;
&lt;li&gt;🔍 Block Categories at a Glance&lt;/li&gt;
&lt;li&gt;🌮 Why Use FlyonUI Blocks?&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;⚙️ Starting with Different Framework and Technologies&lt;/li&gt;

&lt;li&gt;

✅ Steps:

&lt;ul&gt;
&lt;li&gt;1. Copy–Paste FlyonUI Blocks&lt;/li&gt;
&lt;li&gt;2. Using Copy Prompt&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;🧠 Let’s build the BBQ Restaurant Landing Page with the Copy Prompt Feature&lt;/li&gt;

&lt;li&gt;

🛠️ How It Works

&lt;ul&gt;
&lt;li&gt;1. 🔥 Hero Section&lt;/li&gt;
&lt;li&gt;2. 🏆 About Us Section&lt;/li&gt;
&lt;li&gt;3. 🍔 Menu Section&lt;/li&gt;
&lt;li&gt;4. 🛎️ Services Section&lt;/li&gt;
&lt;li&gt;5. 🎊 Testimonials&lt;/li&gt;
&lt;li&gt;6. 📞 Contact Us&lt;/li&gt;
&lt;li&gt;7. 🖥️ Footer&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;

How to Customise FlyonUI Blocks

&lt;ul&gt;
&lt;li&gt;🍀 1. Direct Code Changes&lt;/li&gt;
&lt;li&gt;📌 Example: Adjusting Icon (Avatar) Size&lt;/li&gt;
&lt;li&gt;🍀 2. Customizing Components with Context7 MCP&lt;/li&gt;
&lt;li&gt;🔍 What is Context7 MCP?&lt;/li&gt;
&lt;li&gt;⚙️ Setup Context7 MCP&lt;/li&gt;
&lt;li&gt;📦 Example Use Case&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;✅ Conclusion&lt;/li&gt;

&lt;li&gt;📺 Watch the Full Video&lt;/li&gt;

&lt;/ul&gt;




&lt;h2&gt;
  
  
  🧑‍💻 Introduction
&lt;/h2&gt;

&lt;p&gt;Hey everyone!  In this blog, we’ll walk you through how we built a fully responsive landing page for a &lt;strong&gt;BBQ restaurant&lt;/strong&gt; using &lt;strong&gt;FlyonUI Blocks&lt;/strong&gt; and some powerful AI tools.&lt;/p&gt;

&lt;p&gt;We'll be using:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;FlyonUI Blocks&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;The &lt;strong&gt;Copy Prompt&lt;/strong&gt; feature&lt;/li&gt;
&lt;li&gt;And the &lt;strong&gt;Context7 MCP&lt;/strong&gt; server&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;All inside a &lt;strong&gt;Next.js&lt;/strong&gt; setup — it’s super fast, clean, and easy to extend.&lt;/p&gt;




&lt;h2&gt;
  
  
  🧾 What Are FlyonUI Blocks?
&lt;/h2&gt;

&lt;p&gt;FlyonUI Blocks are a curated collection of &lt;strong&gt;500+ ready-to-use layout sections&lt;/strong&gt; built with &lt;strong&gt;Tailwind CSS&lt;/strong&gt;, covering everything from marketing headers to dashboards, ecommerce pages, data tables, and more. Each block is customizable, responsive, accessible, and supports themes and RTL layouts.&lt;/p&gt;

&lt;p&gt;FlyonUI is an open-source &lt;a href="https://flyonui.com/" rel="noopener noreferrer"&gt;Tailwind Component&lt;/a&gt; library offering:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;80+ standalone components&lt;/strong&gt;, like buttons, cards, modals, alerts, switchers, accordions, and advanced selects&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Blocks&lt;/strong&gt; built on top of components—500+ free and premium layout sections to compose pages quickly&lt;/li&gt;
&lt;/ul&gt;




&lt;h3&gt;
  
  
  🔍 Block Categories at a Glance
&lt;/h3&gt;

&lt;p&gt;FlyonUI Blocks fall into five main categories:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Category&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Marketing UI&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Hero sections, CTAs, feature highlights, testimonials&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Dashboard &amp;amp; App UI&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Layouts, widgets, modals, sidebars, charts, forms&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;eCommerce UI&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Product cards, filters, reviews, cart, checkout flows&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Data Table UI&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Interactive tables, stats, filters, pagination&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Bento Grid UI&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Responsive grids and layout systems&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Each section includes both free and pro options and is theme-ready with RTL support.&lt;/p&gt;




&lt;h3&gt;
  
  
  🎨 Why Use FlyonUI Blocks?
&lt;/h3&gt;

&lt;p&gt;⚡ &lt;strong&gt;Jet‑Fast UI Composition&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;You can assemble entire pages by mixing and matching the &lt;a href="https://flyonui.com/blocks" rel="noopener noreferrer"&gt;Tailwind blocks&lt;/a&gt;—no repetitive boilerplate, just copy-paste or import.&lt;/p&gt;

&lt;p&gt;🧩 &lt;strong&gt;Clean, Maintainable Code&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Blocks use &lt;strong&gt;semantic class names&lt;/strong&gt; built on Tailwind utilities for readable, modifiable markup that avoids class clutter.&lt;/p&gt;

&lt;p&gt;🌈 &lt;strong&gt;Unlimited Theming&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Support for multiple design themes (Light, Dark, Luxury, Corporate, etc.) without rewriting classes, plus full dark mode and RTL compatibility.&lt;/p&gt;

&lt;p&gt;💡 &lt;strong&gt;Fully Customizable Interactivity&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Includes headless JS plugins for accessible interactive components (dropdowns, accordions, overlays)—no additional frameworks needed.&lt;/p&gt;

&lt;p&gt;🛠 &lt;strong&gt;Cross‑Framework Support&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Works seamlessly in plain HTML or within React, Vue, Svelte, and other Tailwind-compatible environments.&lt;/p&gt;




&lt;h2&gt;
  
  
  ⚙️ Starting with Different Frameworks and Technologies
&lt;/h2&gt;

&lt;p&gt;FlyonUI provides &lt;a href="https://flyonui.com/docs/getting-started/framework-guides/" rel="noopener noreferrer"&gt;framework integration guides&lt;/a&gt; for multiple frameworks. Most contain manual setup instructions and starter kits. We’ll be using the &lt;strong&gt;Next.js starter kit&lt;/strong&gt; for this tutorial.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/themeselection/flyonui-nextjs-integration" rel="noopener noreferrer"&gt;NextJs starterkit github&lt;/a&gt;  &lt;/p&gt;

&lt;h3&gt;
  
  
  ✅ Steps:
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt;Clone the FlyonUI Next.js starter project&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Install dependencies:&lt;br&gt;
&lt;/p&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npm &lt;span class="nb"&gt;install&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Run the development server:&lt;br&gt;
&lt;/p&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npm run dev
&lt;/code&gt;&lt;/pre&gt;

&lt;/li&gt;
&lt;/ol&gt;

&lt;blockquote&gt;
&lt;p&gt;💡 New to FlyonUI? Watch the &lt;a href="https://youtu.be/9dvg1WaDhSc?si=Pix_yimx0o59wc_H" rel="noopener noreferrer"&gt;Getting Started with FlyonUI | Beginner’s Guide ⚡️&lt;/a&gt;.&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  How to Use FlyonUI Blocks
&lt;/h2&gt;

&lt;p&gt;There are multiple ways to use FlyonUI Blocks:&lt;/p&gt;

&lt;h3&gt;
  
  
  1. Copy-Paste FlyonUI Blocks
&lt;/h3&gt;

&lt;p&gt;You can use the &lt;strong&gt;Copy&lt;/strong&gt; button in the code section to grab the HTML. However, if the block contains CSS or JS, you must copy and integrate those separately into your project.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fdo2evruqy7dkoukvnmog.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fdo2evruqy7dkoukvnmog.png" alt="Copy-Paste"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;h3&gt;
  
  
  2. Using Copy Prompt
&lt;/h3&gt;

&lt;p&gt;This feature lets you copy a &lt;strong&gt;complete code block&lt;/strong&gt; (HTML, CSS, JS) using a structured prompt — ideal for feeding into AI tools.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3jz8mm82f93z76m7vf2n.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3jz8mm82f93z76m7vf2n.png" alt="Copy Prompt"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fltarc4jc5gl883mkq8gk.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fltarc4jc5gl883mkq8gk.png" alt="Copy Prompt"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  🧠 Let’s build the BBQ Restaurant Landing Page with the Copy Prompt Feature
&lt;/h2&gt;

&lt;p&gt;The &lt;strong&gt;Copy Prompt&lt;/strong&gt; feature is a game-changer. It helps you instantly copy a structured prompt to feed into your favorite AI tool.&lt;/p&gt;




&lt;h2&gt;
  
  
  🛠 How It Works
&lt;/h2&gt;

&lt;p&gt;Visit 👉 FlyonUI’s &lt;a href="https://flyonui.com/blocks" rel="noopener noreferrer"&gt;Tailwind CSS Blocks&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Use the pre-built prompts to generate your website sections using AI tools like &lt;strong&gt;VS Code&lt;/strong&gt;, &lt;strong&gt;Cursor&lt;/strong&gt;, or &lt;strong&gt;Windsurf&lt;/strong&gt;.&lt;/p&gt;




&lt;h3&gt;
  
  
  1. 🔥 Hero Section
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt;Go to the &lt;a href="https://flyonui.com/blocks/marketing-ui/hero-section" rel="noopener noreferrer"&gt;&lt;strong&gt;Hero&lt;/strong&gt;&lt;/a&gt; section.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fqa92i67qds47i1588qte.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fqa92i67qds47i1588qte.png" alt="Hero"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Select the block you want, then click the &lt;strong&gt;"Copy Prompt"&lt;/strong&gt; button.&lt;/li&gt;
&lt;li&gt;Paste it into your AI tool.&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Add further custom instructions:&lt;br&gt;
&lt;/p&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Create a hero section related to my BBQ restaurant, so update the context accordingly.
- Don't use image imports; use an HTML &amp;lt;img&amp;gt; tag instead.
&lt;/code&gt;&lt;/pre&gt;

&lt;/li&gt;
&lt;/ol&gt;




&lt;h3&gt;
  
  
  2. 👨‍🍳 About Us Section
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt;Navigate to the &lt;a href="https://flyonui.com/blocks/marketing-ui/about-us-page" rel="noopener noreferrer"&gt;&lt;strong&gt;About Us&lt;/strong&gt;&lt;/a&gt; section.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fo3b3ay3ueceo9aism0jr.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fo3b3ay3ueceo9aism0jr.png" alt="About Us"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Select the block you want, then click the &lt;strong&gt;"Copy Prompt"&lt;/strong&gt; button.&lt;/li&gt;
&lt;li&gt;Paste it into your AI tool.&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Add further custom instructions:&lt;br&gt;
&lt;/p&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Create an About Us section using the above code, add it after the hero section, and update the image using Unsplash and context
&lt;/code&gt;&lt;/pre&gt;

&lt;/li&gt;
&lt;/ol&gt;




&lt;h3&gt;
  
  
  3. 🍖 Menu Section
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt;Navigate to the &lt;strong&gt;&lt;a href="https://flyonui.com/blocks/marketing-ui/gallery-component" rel="noopener noreferrer"&gt;Gallery&lt;/a&gt;,&lt;/strong&gt; we will use this as the Menu section so we can display images. &lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F2dbqmi166h684l34y25f.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F2dbqmi166h684l34y25f.png" alt="Menu"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Select the block you want, then click the &lt;strong&gt;"Copy Prompt"&lt;/strong&gt; button.&lt;/li&gt;
&lt;li&gt;Paste it into your AI tool.&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Add further custom instructions:&lt;br&gt;
&lt;/p&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Create me the menu section with the help of the above Gallery code, keep the file name menu section, update the image from Unsplash, and also update the context accordingly
&lt;/code&gt;&lt;/pre&gt;

&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Now, sometimes the image from Unsplash might be broken as they might be pro images, so we will update those with the help of AI&lt;br&gt;
&lt;/p&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Image-xzy is broken, change it to a working link, use a free Unsplash image 
&lt;/code&gt;&lt;/pre&gt;

&lt;/li&gt;
&lt;/ol&gt;




&lt;h3&gt;
  
  
  4. 🛎️ Services Section
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt;Go to the &lt;a href="https://flyonui.com/blocks/marketing-ui/blog-component" rel="noopener noreferrer"&gt;&lt;strong&gt;Blog&lt;/strong&gt;&lt;/a&gt;, we will use it for Service section.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F8orw10lgaxfh7mij6grx.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F8orw10lgaxfh7mij6grx.png" alt="Services"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Select the block you want, then click the &lt;strong&gt;"Copy Prompt"&lt;/strong&gt; button.&lt;/li&gt;
&lt;li&gt;Paste it into your AI tool.&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Add further custom instructions:&lt;br&gt;
&lt;/p&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Create a Services section for my BBQ restaurant (e.g., dine-in, catering, delivery). Place it after the menu section.

&lt;/code&gt;&lt;/pre&gt;

&lt;/li&gt;
&lt;/ol&gt;




&lt;h3&gt;
  
  
  5. 🌟 Testimonials
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt;Visit the &lt;a href="https://flyonui.com/blocks/marketing-ui/testimonials-component" rel="noopener noreferrer"&gt;&lt;strong&gt;Testimonials&lt;/strong&gt;&lt;/a&gt; section.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fdud0wrw1n8htmnaafqit.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fdud0wrw1n8htmnaafqit.png" alt="Testimonials"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Select the block you want, then click the &lt;strong&gt;"Copy Prompt"&lt;/strong&gt; button.&lt;/li&gt;
&lt;li&gt;Paste it into your AI tool.&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Add further custom instructions:&lt;br&gt;
&lt;/p&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Create a Testimonials section withthe  provided code and add it after the service section
&lt;/code&gt;&lt;/pre&gt;

&lt;/li&gt;
&lt;/ol&gt;




&lt;h3&gt;
  
  
  6. 📞 Contact Us
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt;Navigate to the &lt;a href="https://flyonui.com/blocks/marketing-ui/contact-us-page" rel="noopener noreferrer"&gt;&lt;strong&gt;Contact Us&lt;/strong&gt;&lt;/a&gt; section.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fkpftu35ihzyb0dnknq1t.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fkpftu35ihzyb0dnknq1t.png" alt="Contact Us&amp;lt;br&amp;gt;
"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Select the block you want, then click the &lt;strong&gt;"Copy Prompt"&lt;/strong&gt; button.&lt;/li&gt;
&lt;li&gt;Paste it into your AI tool.&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Add further custom instructions:&lt;br&gt;
&lt;/p&gt;

&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Create a booking section with the help of the above code and add it after the testimonials section
&lt;/code&gt;&lt;/pre&gt;




&lt;/li&gt;

&lt;/ol&gt;




&lt;h3&gt;
  
  
  7. 🔚 Footer
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt;Go to the &lt;a href="https://flyonui.com/blocks/marketing-ui/footer-component" rel="noopener noreferrer"&gt;&lt;strong&gt;Footer&lt;/strong&gt;&lt;/a&gt; section.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fwil4z1aqizcbif0q8vjl.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fwil4z1aqizcbif0q8vjl.png" alt="Footer"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Select the block you want, then click the &lt;strong&gt;"Copy Prompt"&lt;/strong&gt; button.&lt;/li&gt;
&lt;li&gt;Paste it into your AI tool.&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Add further custom instructions:&lt;br&gt;
&lt;/p&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;Create me Footer section with the &lt;span class="nb"&gt;help &lt;/span&gt;above code and add it after the testimonials section
&lt;/code&gt;&lt;/pre&gt;

&lt;/li&gt;
&lt;/ol&gt;




&lt;h2&gt;
  
  
  How to Customise FlyonUI Blocks
&lt;/h2&gt;

&lt;p&gt;There are two methods:&lt;/p&gt;

&lt;h3&gt;
  
  
  🧩 1. Direct Code Changes
&lt;/h3&gt;

&lt;p&gt;Once a section is created, you might want to adjust things like &lt;strong&gt;icon sizes&lt;/strong&gt;, &lt;strong&gt;spacing&lt;/strong&gt;, &lt;strong&gt;padding&lt;/strong&gt;, or &lt;strong&gt;margins&lt;/strong&gt; to better match your design.&lt;/p&gt;

&lt;p&gt;These changes can be done manually in the code.&lt;/p&gt;

&lt;h3&gt;
  
  
  📌 Example: Adjusting Icon (Avatar) Size
&lt;/h3&gt;

&lt;p&gt;Let’s say you want to increase the size of an avatar icon. Here’s the original code:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;div&lt;/span&gt; &lt;span class="na"&gt;class=&lt;/span&gt;&lt;span class="s"&gt;"avatar"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;div&lt;/span&gt; &lt;span class="na"&gt;class=&lt;/span&gt;&lt;span class="s"&gt;"size-10 rounded-full"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
    &lt;span class="nt"&gt;&amp;lt;img&lt;/span&gt; &lt;span class="na"&gt;src=&lt;/span&gt;&lt;span class="s"&gt;"&amp;lt;https://cdn.flyonui.com/fy-assets/avatar/avatar-1.png&amp;gt;"&lt;/span&gt;
    &lt;span class="na"&gt;alt=&lt;/span&gt;&lt;span class="s"&gt;"avatar"&lt;/span&gt; &lt;span class="nt"&gt;/&amp;gt;&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;/div&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;/div&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;To make the avatar larger, simply change &lt;code&gt;size-10&lt;/code&gt; to &lt;code&gt;size-12&lt;/code&gt;:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;div&lt;/span&gt; &lt;span class="na"&gt;class=&lt;/span&gt;&lt;span class="s"&gt;"avatar"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;div&lt;/span&gt; &lt;span class="na"&gt;class=&lt;/span&gt;&lt;span class="s"&gt;"size-12 rounded-full"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
    &lt;span class="nt"&gt;&amp;lt;img&lt;/span&gt; &lt;span class="na"&gt;src=&lt;/span&gt;&lt;span class="s"&gt;"&amp;lt;https://cdn.flyonui.com/fy-assets/avatar/avatar-1.png&amp;gt;"&lt;/span&gt;
    &lt;span class="na"&gt;alt=&lt;/span&gt;&lt;span class="s"&gt;"avatar"&lt;/span&gt; &lt;span class="nt"&gt;/&amp;gt;&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;/div&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;/div&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;✅ This small change increases the avatar size while keeping everything else intact.&lt;/p&gt;




&lt;h2&gt;
  
  
  🧩 2. Customizing Components with Context7 MCP
&lt;/h2&gt;

&lt;p&gt;Once the landing page is complete, we’ll &lt;strong&gt;fine-tune the components&lt;/strong&gt; — styles, layout, and design.&lt;/p&gt;

&lt;h3&gt;
  
  
  🔍 What is Context7 MCP?
&lt;/h3&gt;

&lt;p&gt;Context7 MCP is a &lt;strong&gt;Model Context Provider&lt;/strong&gt; that plugs into your AI tool (like Cursor or VS Code) to feed real-time, version-specific documentation from FlyonUI.&lt;/p&gt;

&lt;p&gt;It helps you:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Get accurate suggestions&lt;/li&gt;
&lt;li&gt;Modify components easily&lt;/li&gt;
&lt;li&gt;Stay updated with the latest UI patterns.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  🔍 Setup Context7 MCP
&lt;/h3&gt;

&lt;p&gt;Follow the setup instructions for your preferred code editor in the &lt;a href="https://flyonui.com/docs/ai-mcp-setup/code-editors/" rel="noopener noreferrer"&gt;official FlyonUI Context7 MCP docs&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;FlyonUI provides seamless integration for VS Code, Cursor, Windsurf, and Cline, allowing you to use AI-powered suggestions directly within your editor.&lt;/p&gt;




&lt;h3&gt;
  
  
  🧰 Example Use Case
&lt;/h3&gt;

&lt;p&gt;We’ll update the &lt;strong&gt;theme&lt;/strong&gt; and &lt;strong&gt;font family&lt;/strong&gt; for our restaurant landing page&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Use context7. Using FlyonUI, update the theme to "gourmet". I don't want light or dark, only gourmet. Update the font accordingly.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Other things you can do with Context7:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Change themes&lt;/li&gt;
&lt;li&gt;Modify component styles.&lt;/li&gt;
&lt;li&gt;Add component with just the prompt
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;example: Use context7, using FlyonUI, add Faq accordion after testimonials. 
Use the accordion shadow example.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;Update colors, icons, spacing, fonts, and more&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  ✅ Conclusion
&lt;/h2&gt;

&lt;p&gt;And that’s a wrap! 🎉&lt;/p&gt;

&lt;p&gt;You’ve now seen how to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Set up FlyonUI&lt;/strong&gt; with Next.js&lt;/li&gt;
&lt;li&gt;Use the &lt;strong&gt;Copy Prompt&lt;/strong&gt; to generate full UI blocks&lt;/li&gt;
&lt;li&gt;Build a clean &lt;strong&gt;landing page&lt;/strong&gt; quickly&lt;/li&gt;
&lt;li&gt;Use &lt;strong&gt;Context7 MCP&lt;/strong&gt; to customize and improve components using AI&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This combination of tools drastically reduces manual coding while still giving you full control over design and structure.&lt;/p&gt;




&lt;h2&gt;
  
  
  📺 Watch the Full Video
&lt;/h2&gt;

&lt;p&gt;Catch the full walkthrough in the video below.&lt;/p&gt;

&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/kc34UU9Zvm8"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;




&lt;h3&gt;
  
  
  Unlock The Full Potential of Tailwind AI with FlyonUI MCP 🤩
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ffwppwftxgisemyibip19.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ffwppwftxgisemyibip19.png" alt="FlyonUI MCP - Tailwind AI Builder"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;FlyonUI MCP is &lt;a href="https://flyonui.com/mcp" rel="noopener noreferrer"&gt;Tailwind AI&lt;/a&gt; Builder, a smart tool designed to help developers create Tailwind CSS components, blocks, and landing pages more efficiently.&lt;/p&gt;

&lt;p&gt;Besides, it integrates directly into your IDE, allowing you to generate UI elements with simple prompts, inspired by the FlyonUI library.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Key Features:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The following are some of the awesome features that make FlyonUI MCP an awesome Tailwind AI Builder:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Tailwind AI Builder&lt;/strong&gt;: Generate intelligent layouts and components using AI.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Framework Compatibility:&lt;/strong&gt; Svelte, Nextjs, HTML, React, Nuxt, Vue&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Live Preview&lt;/strong&gt;: See your UI evolve in real-time as you design.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Blazing Fast Workflow:&lt;/strong&gt; – Build and ship interfaces in minutes, not hours.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Low-Code Workflow&lt;/strong&gt;: Create components, blocks, or landing pages with just a few prompts.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;IDE Integration&lt;/strong&gt;: Visual Studio Code, Cursor, Windsurf, VS Code + Cline.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Prompt-Based Creation:&lt;/strong&gt; Instantly create customized Tailwind blocks, pages &amp;amp; more.&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>webdev</category>
      <category>ai</category>
      <category>tutorial</category>
      <category>programming</category>
    </item>
    <item>
      <title>10+ Stunning React Icon Library</title>
      <dc:creator>ThemeSelection</dc:creator>
      <pubDate>Fri, 13 Jun 2025 07:06:23 +0000</pubDate>
      <link>https://forem.com/themeselection/10-stunning-react-icon-library-16a2</link>
      <guid>https://forem.com/themeselection/10-stunning-react-icon-library-16a2</guid>
      <description>&lt;p&gt;Icons are the unsung heroes of web design, adding visual flair and intuitive navigation to your React projects.&lt;/p&gt;

&lt;p&gt;Whether you’re building a sleek dashboard or a vibrant e-commerce site, the right icon library can make your user interface pop while keeping things functional.&lt;/p&gt;

&lt;p&gt;In this blog, we’ll dive into why React icon libraries are a game-changer and explore 12 trending libraries that are stealing the show in 2025.&lt;/p&gt;

&lt;p&gt;Each one brings something unique to the table, so let’s find the perfect fit for your next project!&lt;/p&gt;

&lt;h2&gt;
  
  
  Why Use a React Icon Library?
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F1xkn2cqwefm5efibc1id.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F1xkn2cqwefm5efibc1id.png" alt="Why use a React Icon Library" width="700" height="249"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Why use a React Icon Library?&lt;/p&gt;

&lt;p&gt;React icon libraries are a developer’s best friend for a reason. They save time by offering pre-designed, customizable icons that integrate seamlessly with React components.&lt;/p&gt;

&lt;p&gt;No need to wrestle with manual SVG imports or inconsistent designs — these libraries deliver scalability, flexibility, and a polished look.&lt;/p&gt;

&lt;p&gt;Plus, they often come with multiple styles and formats, ensuring your UI stays cohesive across devices.&lt;/p&gt;

&lt;p&gt;With open-source options and easy-to-use APIs, they’re a must-have for building stunning, user-friendly interfaces without breaking a sweat.&lt;/p&gt;

&lt;h2&gt;
  
  
  Top React Icon Libraries for 2025
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1.  &lt;a href="https://iconify.design/" rel="noopener noreferrer"&gt;Iconify&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fdledgwso9y1nmdqlvdqx.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fdledgwso9y1nmdqlvdqx.png" alt="Iconify - React Icon Library" width="700" height="368"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Iconify is a massive, open-source React icon library offering over 200,000 icons from 100+ icon sets, including Font Awesome, Material Design, and Tabler Icons. It’s a treasure trove for React developers, providing a unified API to access diverse icon collections without bloating your project.&lt;/p&gt;

&lt;p&gt;With the @iconify/react package, integration is seamless, allowing you to import only the icons you need. Its SVG framework ensures crisp, scalable icons that load fast.&lt;/p&gt;

&lt;p&gt;We’ve personally used Iconify at  &lt;a href="https://flyonui.com/" rel="noopener noreferrer"&gt;FlyonUI&lt;/a&gt;  to enhance our UI components with vibrant, customizable icons, proving its versatility in real-world projects. Whether you’re building a dashboard or a landing page, Iconify’s flexibility makes it a top choice.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://flyonui.com/" rel="noopener noreferrer"&gt;&lt;strong&gt;FlyonUI — An open-source Tailwind CSS Component Library&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://flyonui.com/" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fcdru8k3yb3g9fv4pljqf.png" alt="FlyonUI — An open-source Tailwind CSS Component Library" width="700" height="365"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;At FlyonUI, we leverage Iconify and  &lt;a href="https://tabler.io/icons" rel="noopener noreferrer"&gt;Tabler Icons&lt;/a&gt;  to power our component library, ensuring our UI elements are visually appealing and consistent. This integration allows us to offer developers a rich selection of icons that elevate the user experience effortlessly.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Features&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Over 200,000 icons from 100+ icon sets&lt;/li&gt;
&lt;li&gt;  Seamless React integration via @iconify/react&lt;/li&gt;
&lt;li&gt;  Customizable size, color, and styles via props or CSS&lt;/li&gt;
&lt;li&gt;  Lightweight with on-demand icon loading&lt;/li&gt;
&lt;li&gt;  Supports animations and dynamic styling&lt;/li&gt;
&lt;li&gt;  Regular updates with new icon sets&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Pricing &amp;amp; License&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Free and open-source&lt;/li&gt;
&lt;li&gt;  MIT License&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  2.  &lt;a href="https://lucide.dev/" rel="noopener noreferrer"&gt;Lucide&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fwxjbszuh4kruad8nzktj.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fwxjbszuh4kruad8nzktj.png" alt="Lucide" width="700" height="368"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Lucide is a community-driven icon toolkit that’s all about clean, consistent, and modern designs. A fork of Feather Icons, it offers over 1,450 icons that are simple yet versatile.&lt;/p&gt;

&lt;p&gt;Lucide’s icons are built for React, Vue, and other frameworks, with a focus on pixel-perfect precision.&lt;/p&gt;

&lt;p&gt;Its easy-to-use API lets you tweak sizes and colors effortlessly, making it a favorite for developers who value minimalism and functionality.&lt;/p&gt;

&lt;p&gt;We’ve used Lucide at  &lt;a href="http://shadcnstudio.com/" rel="noopener noreferrer"&gt;Shadcnstudio.com&lt;/a&gt;  to elevate our UI components with its sleek, customizable icons. Similarly,  &lt;a href="https://ui.shadcn.com/" rel="noopener noreferrer"&gt;shadcn/ui&lt;/a&gt;  uses Lucide as the default icon set. Therefore in our open-source theme editor and component library, shadcn/studio, ensuring a polished and cohesive UI.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Features&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  1,450+ icons with a sleek, modern aesthetic&lt;/li&gt;
&lt;li&gt;  Highly customizable with support for size, color, and stroke width&lt;/li&gt;
&lt;li&gt;  Compatible with React, Vue, and Svelte&lt;/li&gt;
&lt;li&gt;  Community-driven with regular updates&lt;/li&gt;
&lt;li&gt;  Lightweight and fast-loading SVGs&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Pricing &amp;amp; License&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Free and open-source&lt;/li&gt;
&lt;li&gt;  MIT License&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;What is&lt;/strong&gt; &lt;a href="https://shadcnstudio.com/" rel="noopener noreferrer"&gt;&lt;strong&gt;Shadcn/studio&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt;?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://shadcnstudio.com/" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F8uem9196u2kfjmpxvhab.png" alt="Shadcn/studio" width="700" height="368"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Shadcn offers customizable variants of components, blocks, and templates. Preview, customize, and copy-paste them into your apps with ease.&lt;/p&gt;

&lt;p&gt;Building on the solid foundation of the Shadcn registry, we’ve enhanced it with custom-designed components &amp;amp; blocks to give you a head start.&lt;/p&gt;

&lt;h3&gt;
  
  
  3.  &lt;a href="https://lineicons.com/" rel="noopener noreferrer"&gt;Lineicons&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fef0t9xa6nj1meqtdmo6u.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fef0t9xa6nj1meqtdmo6u.jpg" alt="Lineicons" width="700" height="456"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Lineicons stands out for its elegant, minimal icons available in multiple styles like solid, outline, and duo-tone. With over 2,000 icons, it’s perfect for creating professional-grade UIs.&lt;/p&gt;

&lt;p&gt;This React icon library supports JSX, TSX, and SVG formats, making it a versatile choice for React developers. Its clean design ensures your project looks polished, and the icons are optimized for quick loading.&lt;/p&gt;

&lt;p&gt;A great pick for those who want flexibility without overwhelming complexity.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Features&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  2,000+ icons in multiple styles (solid, outline, duo-tone)&lt;/li&gt;
&lt;li&gt;  Available in SVG, JSX, TSX, and other formats&lt;/li&gt;
&lt;li&gt;  Easy integration with React components&lt;/li&gt;
&lt;li&gt;  Lightweight and scalable for all devices&lt;/li&gt;
&lt;li&gt;  Regular updates with new icons&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Pricing &amp;amp; License&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Free and premium versions available&lt;/li&gt;
&lt;li&gt;  Custom licensing for commercial use (check Lineicons website for details)&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  4.  &lt;a href="https://mui.com/material-ui/material-icons/" rel="noopener noreferrer"&gt;Material UI Icons&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmiro.medium.com%2Fv2%2Fresize%3Afit%3A700%2F0%2AJDxM6iVfN0BKTmUZ" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmiro.medium.com%2Fv2%2Fresize%3Afit%3A700%2F0%2AJDxM6iVfN0BKTmUZ" alt="Material UI Icons" width="700" height="350"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Material UI (MUI) Icons bring Google’s Material Design to your React projects with over 2,100 sleek, modern icons. Part of the MUI ecosystem, these icons are perfect for developers already using Material UI components.&lt;/p&gt;

&lt;p&gt;They come in five styles — filled, outlined, rounded, two-tone, and sharp — for maximum flexibility. With intuitive integration and extensive documentation, MUI Icons are ideal for building consistent, professional interfaces.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Features&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  2,100+ icons in five distinct styles&lt;/li&gt;
&lt;li&gt;  Seamless integration with Material UI components&lt;/li&gt;
&lt;li&gt;  Customizable via props for size, color, and style&lt;/li&gt;
&lt;li&gt;  Optimized for performance and scalability&lt;/li&gt;
&lt;li&gt;  Extensive documentation for easy setup&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Pricing &amp;amp; License&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Free to use&lt;/li&gt;
&lt;li&gt;  MIT License&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  5.  &lt;a href="https://heroicons.com/" rel="noopener noreferrer"&gt;Heroicons&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fd193bkasipxmahp9w1os.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fd193bkasipxmahp9w1os.jpg" alt="Heroicons" width="700" height="350"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Heroicons, crafted by the Tailwind CSS team, offers 316 high-quality SVG icons in solid and outline styles. These icons are designed for simplicity and integrate beautifully with Tailwind-based projects.&lt;/p&gt;

&lt;p&gt;You can copy them as JSX or SVG, and their lightweight nature ensures fast performance. Heroicons is perfect for developers who want a curated, no-fuss collection for clean, modern UIs.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Features&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  316 SVG icons in solid and outline styles&lt;/li&gt;
&lt;li&gt;  Tailwind CSS compatibility for seamless styling&lt;/li&gt;
&lt;li&gt;  Copy as JSX or SVG for easy integration&lt;/li&gt;
&lt;li&gt;  Lightweight and fast-loading&lt;/li&gt;
&lt;li&gt;  Fully customizable colors and sizes&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Pricing &amp;amp; License&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Free and open-source&lt;/li&gt;
&lt;li&gt;  MIT License&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  6.  &lt;a href="https://tabler.io/icons" rel="noopener noreferrer"&gt;Tabler Icons&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgenxdln2ynk1a36ny1jq.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgenxdln2ynk1a36ny1jq.png" alt="Tabler Icons" width="700" height="434"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Tabler Icons boasts over 5,600 pixel-perfect icons, making it one of the largest open-source libraries. Its clean, minimal designs are ideal for professional dashboards and web apps.&lt;/p&gt;

&lt;p&gt;Available in SVG and PNG, the icons are lightweight and customizable, supporting React, Vue, and Svelte. Tabler’s versatility and massive collection make it a go-to for developers needing variety without sacrificing quality.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Features&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  5,600+ pixel-perfect icons&lt;/li&gt;
&lt;li&gt;  Available in SVG and PNG formats&lt;/li&gt;
&lt;li&gt;  Customizable styles, strokes, and colors&lt;/li&gt;
&lt;li&gt;  Compatible with React, Vue, and Svelte&lt;/li&gt;
&lt;li&gt;  Lightweight and high-quality for all devices&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Pricing &amp;amp; License&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Free to use&lt;/li&gt;
&lt;li&gt;  MIT License&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  7.  &lt;a href="https://iconoir.com/" rel="noopener noreferrer"&gt;Iconoir&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ft56a9mlv05bsjgzvzajj.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ft56a9mlv05bsjgzvzajj.png" alt="Iconoir" width="700" height="336"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Iconoir is an open-source library with over 1,300 simple, clean icons designed for modern web projects. Its minimalist aesthetic makes it perfect for developers who want lightweight, scalable icons without clutter.&lt;/p&gt;

&lt;p&gt;Iconoir supports React and other frameworks, with easy customization options for size and color. It’s a great choice for creating uncluttered, user-friendly interfaces.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Features&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  1,300+ minimalist SVG icons&lt;/li&gt;
&lt;li&gt;  Compatible with React, Vue, and Svelte&lt;/li&gt;
&lt;li&gt;  Customizable size and color via CSS&lt;/li&gt;
&lt;li&gt;  Lightweight and optimized for performance&lt;/li&gt;
&lt;li&gt;  Open-source with community contributions&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Pricing &amp;amp; License&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Free to use&lt;/li&gt;
&lt;li&gt;  MIT License&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  8.  &lt;a href="https://phosphoricons.com/" rel="noopener noreferrer"&gt;Phosphor Icons&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmiro.medium.com%2Fv2%2Fresize%3Afit%3A700%2F0%2AKAQXt34nIySVcfXz" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmiro.medium.com%2Fv2%2Fresize%3Afit%3A700%2F0%2AKAQXt34nIySVcfXz" alt="Phosphor Icons" width="700" height="368"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Phosphor Icons offers over 7,000 icons in multiple weights and styles, including regular, thin, bold, and filled. Its flexibility and massive collection make it ideal for any React project, from apps to websites.&lt;/p&gt;

&lt;p&gt;The icons are highly customizable, with support for animations and dynamic styling. Phosphor’s clean design and extensive options make it a developer favorite.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Features&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  7,000+ icons in multiple weights and styles&lt;/li&gt;
&lt;li&gt;  Customizable with animations and dynamic styling&lt;/li&gt;
&lt;li&gt;  Compatible with React, Vue, and other frameworks&lt;/li&gt;
&lt;li&gt;  Lightweight and scalable SVGs&lt;/li&gt;
&lt;li&gt;  Regular updates with new icons&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Pricing &amp;amp; License&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Free and open-source&lt;/li&gt;
&lt;li&gt;  MIT License&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  9.  &lt;a href="https://react-social-icons.com/" rel="noopener noreferrer"&gt;React Social Icons&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F6xkpsplwlf31qz0y6hh9.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F6xkpsplwlf31qz0y6hh9.png" alt="React Social Icons" width="700" height="417"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;React Social Icons is a niche library focused on social media icons, perfect for adding branded buttons to your website. It includes icons for platforms like Twitter, Facebook, and LinkedIn, with customizable colors and sizes.&lt;/p&gt;

&lt;p&gt;The library is lightweight and easy to integrate, making it ideal for footers or contact sections. If your project needs social media flair, this is the one to pick.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Features&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Icons for major social media platforms&lt;/li&gt;
&lt;li&gt;  Customizable colors, sizes, and hover effects&lt;/li&gt;
&lt;li&gt;  Lightweight and easy to integrate&lt;/li&gt;
&lt;li&gt;  Built specifically for React projects&lt;/li&gt;
&lt;li&gt;  Simple API for quick setup&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Pricing &amp;amp; License&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Free to use&lt;/li&gt;
&lt;li&gt;  MIT License&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  10.  &lt;a href="https://www.xicons.org/#/" rel="noopener noreferrer"&gt;Xicons&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F2vkpiw8k6mnkeu3er7wr.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F2vkpiw8k6mnkeu3er7wr.png" alt="Xicons" width="700" height="337"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Xicons is a versatile library that aggregates icons from multiple sources, including Vue and React-compatible sets. With thousands of icons, it offers a broad selection for any project.&lt;/p&gt;

&lt;p&gt;The library is lightweight, customizable, and supports modern frameworks. Xicons is a solid choice for developers who want a comprehensive, all-in-one solution.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Features&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Thousands of icons from multiple sources&lt;/li&gt;
&lt;li&gt;  Compatible with React and Vue&lt;/li&gt;
&lt;li&gt;  Customizable via CSS and props&lt;/li&gt;
&lt;li&gt;  Lightweight and optimized for speed&lt;/li&gt;
&lt;li&gt;  Regular updates and community support&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Pricing &amp;amp; License&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Free and open-source&lt;/li&gt;
&lt;li&gt;  MIT License&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  11.  &lt;a href="https://react.useanimations.com/" rel="noopener noreferrer"&gt;React UseAnimations&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fev4cdc73iwcnj8gy8bfb.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fev4cdc73iwcnj8gy8bfb.gif" alt="React UseAnimations" width="800" height="443"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;React UseAnimations specializes in animated icons, bringing your UI to life with micro-interactions. Built on Lottie, it offers a curated set of icons with smooth animations that enhance user engagement.&lt;/p&gt;

&lt;p&gt;Perfect for adding dynamic flair to buttons or navigation, this library is easy to integrate and highly customizable. Ideal for projects where interactivity is key.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Features&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Animated icons powered by Lottie&lt;/li&gt;
&lt;li&gt;  Customizable animation speed and styles&lt;/li&gt;
&lt;li&gt;  Lightweight and optimized for React&lt;/li&gt;
&lt;li&gt;  Easy integration with simple API&lt;/li&gt;
&lt;li&gt;  Supports hover and click interactions&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Pricing &amp;amp; License&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Free to use&lt;/li&gt;
&lt;li&gt;  MIT License&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  12.  &lt;a href="https://github.com/lobehub/lobe-icons" rel="noopener noreferrer"&gt;Lobe Icons&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmiro.medium.com%2Fv2%2Fresize%3Afit%3A700%2F0%2Ad3B7nPMI46v66pWh" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmiro.medium.com%2Fv2%2Fresize%3Afit%3A700%2F0%2Ad3B7nPMI46v66pWh" alt="Lobe Icons" width="700" height="263"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Lobe Icons, built on Lucide, is a customizable React component library for AIGC web apps. It offers a rich selection of icons with support for sizes, colors, and animations.&lt;/p&gt;

&lt;p&gt;Designed for modern UI development, it’s perfect for developers building AI-driven interfaces. Its flexibility and clean design make it a standout for specialized projects.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Features&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Based on Lucide with enhanced customization&lt;/li&gt;
&lt;li&gt;  Supports sizes, colors, and animations&lt;/li&gt;
&lt;li&gt;  Ideal for AIGC and modern web apps&lt;/li&gt;
&lt;li&gt;  Lightweight and React-compatible&lt;/li&gt;
&lt;li&gt;  Community-driven with regular updates&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Pricing &amp;amp; License&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Free and open-source&lt;/li&gt;
&lt;li&gt;  MIT License&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  13.  &lt;a href="https://react-icons.github.io/react-icons/" rel="noopener noreferrer"&gt;React Icons&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fc53157819q3014i41gzt.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fc53157819q3014i41gzt.png" alt="React Icons" width="700" height="363"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;React Icons is a powerhouse, bundling thousands of icons from popular packs like Font Awesome, Material Design, and Heroicons into one convenient library.&lt;/p&gt;

&lt;p&gt;With over 3,000 icons, it’s a one-stop shop for developers needing variety without complexity. You can import icons as React components, making integration a breeze.&lt;/p&gt;

&lt;p&gt;Its lightweight design and customizable options ensure fast load times and consistent styling. Perfect for projects where you want access to multiple icon sets without juggling dependencies.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Features&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Over 3,000 icons from multiple libraries like Font Awesome and Bootstrap Icons&lt;/li&gt;
&lt;li&gt;  Import icons as React components for easy integration&lt;/li&gt;
&lt;li&gt;  Customizable colors and sizes via props&lt;/li&gt;
&lt;li&gt;  Lightweight and optimized for performance&lt;/li&gt;
&lt;li&gt;  Regular updates with new icon packs&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Pricing &amp;amp; License&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Free to use&lt;/li&gt;
&lt;li&gt;  MIT License for flexible, open-source usage&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Wrapping Up
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F2hkkuoc16o7shl67mhwz.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F2hkkuoc16o7shl67mhwz.gif" alt="Wrap up" width="498" height="280"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Choosing the right React icon library can transform your project, balancing aesthetics with functionality.&lt;/p&gt;

&lt;p&gt;Whether you need a massive collection like Tabler Icons, animated flair from React UseAnimations, or a minimalist vibe from Lucide, there’s something for everyone in 2025.&lt;/p&gt;

&lt;p&gt;Most of these libraries are free and open-source, so you can experiment without breaking the bank.&lt;/p&gt;

&lt;p&gt;Dive in, play around with these libraries, and let your UI shine! Which one’s your favorite? Let us know in the comments!&lt;/p&gt;

&lt;h2&gt;
  
  
  About us
&lt;/h2&gt;

&lt;p&gt;We, at  &lt;a href="https://themeselection.com/" rel="noopener noreferrer"&gt;&lt;strong&gt;ThemeSelection&lt;/strong&gt;&lt;/a&gt;, provide selected high-quality, modern design, professional and easy-to-use premium and free  &lt;a href="https://themeselection.com/item/category/admin-templates/" rel="noopener noreferrer"&gt;&lt;strong&gt;Admin Panels&lt;/strong&gt;&lt;/a&gt;, such as  &lt;a href="https://themeselection.com/item/category/bootstrap-templates/" rel="noopener noreferrer"&gt;&lt;strong&gt;Bootstrap Templates&lt;/strong&gt;&lt;/a&gt;,  &lt;a href="https://themeselection.com/item/category/react-templates/" rel="noopener noreferrer"&gt;&lt;strong&gt;React Dashboard&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt;,&lt;/strong&gt;  &lt;a href="https://themeselection.com/item/category/asp-net-core-templates/" rel="noopener noreferrer"&gt;&lt;strong&gt;Asp NET Core Templates&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt;,&lt;/strong&gt;  &lt;a href="https://themeselection.com/item/category/vue-templates/" rel="noopener noreferrer"&gt;&lt;strong&gt;Vue Templates&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt;,&lt;/strong&gt;  &lt;a href="https://themeselection.com/item/category/nextjs-templates/" rel="noopener noreferrer"&gt;&lt;strong&gt;Next JS Templates&lt;/strong&gt;&lt;/a&gt;,  &lt;a href="https://themeselection.com/item/category/ui-kits/" rel="noopener noreferrer"&gt;&lt;strong&gt;UI Kits&lt;/strong&gt;&lt;/a&gt;, and  &lt;a href="https://themeselection.com/item/category/saas-boilerplate/" rel="noopener noreferrer"&gt;&lt;strong&gt;SaaS Boilerplate&lt;/strong&gt;&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;If you are looking for  &lt;a href="https://themeselection.com/item/category/free-admin-templates/" rel="noopener noreferrer"&gt;&lt;strong&gt;free admin templates&lt;/strong&gt;&lt;/a&gt;, UI kits and themes then do visit our site…!!&lt;/p&gt;

</description>
      <category>react</category>
      <category>javascript</category>
      <category>developer</category>
      <category>ui</category>
    </item>
    <item>
      <title>10+ Best Open-Source Alternatives to Your Favorite SaaS</title>
      <dc:creator>ThemeSelection</dc:creator>
      <pubDate>Thu, 27 Mar 2025 13:58:47 +0000</pubDate>
      <link>https://forem.com/themeselection/10-best-open-source-alternatives-to-your-favorite-saas-10f4</link>
      <guid>https://forem.com/themeselection/10-best-open-source-alternatives-to-your-favorite-saas-10f4</guid>
      <description>&lt;p&gt;Hey there! Have you ever caught yourself wondering if there’s a free, open source alternatives tool that’s just as awesome as the pricey SaaS software you’re using?&lt;/p&gt;

&lt;p&gt;Well, you’re in luck, we've rounded up some hidden gems that can totally replace the big names you know and love. &lt;/p&gt;

&lt;p&gt;These open source alternatives are powerful, customizable, and perfect for developers and SaaS users who want to save money without sacrificing quality. &lt;/p&gt;

&lt;p&gt;Ready to explore and save some cash? Let’s get started!&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F598n7ukipoj16subdko5.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F598n7ukipoj16subdko5.gif" alt="Save Cash on SaaS" width="480" height="270"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  Open Source SaaS Alternatives
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1. AppFlowy – The leading open-source Notion alternative
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjentd7ojccr25ad0vekf.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjentd7ojccr25ad0vekf.png" alt="AppFlowy Open Source Notion Alternative" width="800" height="473"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What It Does:&lt;/strong&gt; AppFlowy, is an open source alternative to Notion that brings projects, wikis, and teams together in one sleek, AI-collaborative workspace. The best part? You keep full control of your data—no compromises!  &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why use AppFlowy?:&lt;/strong&gt; It’s lightweight, customizable, and built with privacy in mind, making it a solid pick for anyone who wants Notion’s vibes without the subscription.&lt;br&gt;&lt;br&gt;
&lt;strong&gt;Main Features:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;AI Collaboration:&lt;/strong&gt; Smart tools to boost teamwork and productivity.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Data Control:&lt;/strong&gt; Self-host it to keep your info secure and private.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Flexible Workspaces:&lt;/strong&gt; Organize projects, notes, and wikis your way.
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Check It Out:&lt;/strong&gt; &lt;a href="https://www.appflowy.io/" rel="noopener noreferrer"&gt;appflowy.io&lt;/a&gt; | Follow: &lt;a href="https://twitter.com/appflowy" rel="noopener noreferrer"&gt;@appflowy&lt;/a&gt;&lt;/p&gt;




&lt;h3&gt;
  
  
  2. NocoDB – Build Databases As Spreadsheets (Airtable Alternative)
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fcwv5eurqxwr717hwic2f.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fcwv5eurqxwr717hwic2f.png" alt="NocoDB Airtable Open Source Alternative" width="800" height="477"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What It Does:&lt;/strong&gt; NocoDB turns database-building into a breeze by blending the simplicity of spreadsheets with no-code power—an awesome open source alternative to Airtable.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why use NocoDB?:&lt;/strong&gt; It’s perfect for creating custom databases fast, whether you’re managing data for a startup or a side project. Plus, it’s free and flexible!&lt;br&gt;&lt;br&gt;
&lt;strong&gt;Main Features:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;Spreadsheet Interface:&lt;/strong&gt; Build and edit databases like you’re using Excel.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;No-Code Simplicity:&lt;/strong&gt; No coding skills? No problem—get started in minutes.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Customizable:&lt;/strong&gt; Tweak it to fit your workflow with ease.
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Check It Out:&lt;/strong&gt; &lt;a href="https://nocodb.com/" rel="noopener noreferrer"&gt;nocodb.com&lt;/a&gt; | Follow: &lt;a href="https://twitter.com/nocodb" rel="noopener noreferrer"&gt;@nocodb&lt;/a&gt;&lt;/p&gt;




&lt;h3&gt;
  
  
  3. Hoppscotch – Supercharge Your API Development (Open Source Alternative to Postman)
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F2men5nwuvqe6x6emofvd.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F2men5nwuvqe6x6emofvd.png" alt="Hoppscotch postman Laternative" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What It Does:&lt;/strong&gt; Hoppscotch is an open-source API development ecosystem that makes creating and testing API requests a total time-saver—say goodbye to Postman’s price tag! &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why use Hoppscotch?:&lt;/strong&gt; It’s lightweight, fast, and community-driven, giving devs everything they need to streamline API workflows without the bloat.&lt;br&gt;&lt;br&gt;
&lt;strong&gt;Main Features:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;Quick Testing:&lt;/strong&gt; Send and test API requests in real-time.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Team Collaboration:&lt;/strong&gt; Share collections with your crew effortlessly.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Open Ecosystem:&lt;/strong&gt; Extend it with custom scripts and integrations.
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Check It Out:&lt;/strong&gt; &lt;a href="https://hoppscotch.io/" rel="noopener noreferrer"&gt;hoppscotch.io&lt;/a&gt; | Follow: &lt;a href="https://twitter.com/hoppscotch_io" rel="noopener noreferrer"&gt;@hoppscotch_io&lt;/a&gt;&lt;/p&gt;




&lt;h3&gt;
  
  
  Featured Tool: Jetship – Kickstart Your SaaS with ThemeSelection’s Next.js Boilerplate
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fp4lend805lu1ylmju4zb.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fp4lend805lu1ylmju4zb.png" alt="Jetship – Next.js SaaS Boilerplate" width="800" height="418"&gt;&lt;/a&gt; &lt;/p&gt;

&lt;p&gt;Speaking of building smarter, we at ThemeSelection have something special for you: &lt;strong&gt;Jetship&lt;/strong&gt;, our Next.js &lt;a href="https://themeselection.com/item/category/saas-boilerplate/" rel="noopener noreferrer"&gt;SaaS boilerplate&lt;/a&gt; that we recently launched built on Next js, ShadCN, and &lt;a href="https://flyonui" rel="noopener noreferrer"&gt;&lt;strong&gt;FlyonUI&lt;/strong&gt;&lt;/a&gt; and powered by Supabase. &lt;/p&gt;

&lt;p&gt;It’s not an open source alternative but a turbocharged starting point for your next big idea. With pre-built goodies like authentication, payments, and dashboards, Jetship lets you launch a polished, scalable SaaS app in record time. &lt;/p&gt;

&lt;p&gt;It’s customizable, developer-friendly, and designed to save you from reinventing the wheel—so you can focus on what makes your SaaS unique.  &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why You’ll Love It:&lt;/strong&gt;  &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Ready-to-Go Components:&lt;/strong&gt; Auth, subscriptions, and more—out of the box.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Brand-Friendly Design:&lt;/strong&gt; Tweak the look to match your vision.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Built to Scale:&lt;/strong&gt; A solid Next.js foundation for your growing app.
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Get Started:&lt;/strong&gt; &lt;a href="https://demos.themeselection.com/jetship-nextjs-starter-kit" rel="noopener noreferrer"&gt;JetShip Nextjs Starter Kit&lt;/a&gt; | Follow: &lt;a href="https://twitter.com/Theme_Selection" rel="noopener noreferrer"&gt;@Theme_Selection&lt;/a&gt;  &lt;/p&gt;




&lt;h3&gt;
  
  
  4. Supabase – Backend Bliss in Minutes (Firebase Alternative)
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fj4o3roj7tk7lqfjdonxc.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fj4o3roj7tk7lqfjdonxc.png" alt="Supabase best open source SaaS Alternative" width="800" height="313"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What It Does:&lt;/strong&gt; Supabase is a Backend-as-a-Service (BaaS) platform built on PostgreSQL, offering an open-source way to whip up web and mobile backends faster than you can say “Firebase.” &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why use Supabase?:&lt;/strong&gt; It’s got a simple setup, a user-friendly interface, and all the firepower you need to build scalable apps without the proprietary lock-in.&lt;br&gt;&lt;br&gt;
&lt;strong&gt;Main Features:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;Real-Time Database:&lt;/strong&gt; Instant updates with PostgreSQL magic.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Auth Made Easy:&lt;/strong&gt; Built-in authentication for users and APIs.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Scalable &amp;amp; Open:&lt;/strong&gt; Self-host or use their cloud—no limits!
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Check It Out:&lt;/strong&gt; &lt;a href="https://supabase.com/" rel="noopener noreferrer"&gt;supabase.com&lt;/a&gt; | Follow: &lt;a href="https://twitter.com/supabase" rel="noopener noreferrer"&gt;@supabase&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;Check our recently launched Shadcn/studio if you're a shadcn lover!&lt;/p&gt;

&lt;p&gt;&lt;a href="https://shadcnstudio.com" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fdducfy6v3t3w9n1yylwp.png" alt="Shadcn/studio" width="800" height="420"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Shadcn/studio offers customizable variants of components, blocks, and templates. Preview, customize, and copy-paste them into your apps with ease.&lt;/p&gt;




&lt;h3&gt;
  
  
  5. Coolify – Deploy Like a Pro (Heroku/Netlify/Vercel Alternative)
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fstv8bsirv2oor2zpaw2c.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fstv8bsirv2oor2zpaw2c.png" alt="Coolify Open Source Alternative of Netlify" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What It Does:&lt;/strong&gt; Coolify is a self-hosted, open-source deployment platform that lets you easily manage and launch apps—a killer substitute for Heroku, Netlify, or Vercel.  &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why use Coolify?&lt;/strong&gt; It’s all about control and cost—host it yourself, deploy anything, and skip the monthly bills.&lt;br&gt;&lt;br&gt;
&lt;strong&gt;Main Features:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;One-Click Deploys:&lt;/strong&gt; Launch apps without the hassle.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Self-Hosted Freedom:&lt;/strong&gt; Run it on your server or VPS.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Multi-App Support:&lt;/strong&gt; Manage web apps, databases, and more in one place.
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Check It Out:&lt;/strong&gt; &lt;a href="https://coolify.io/" rel="noopener noreferrer"&gt;coolify.io&lt;/a&gt; | Follow: &lt;a href="https://twitter.com/coolifyio" rel="noopener noreferrer"&gt;@coolifyio&lt;/a&gt;&lt;/p&gt;




&lt;h3&gt;
  
  
  6. Plane – Project Management, Open-Source Style (JIRA/Linear/Monday/Asana Alternative)
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fo91qynpd45wgkctactxm.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fo91qynpd45wgkctactxm.png" alt="Jira , Linear  , Monday , Asana , Open Source Alternaitve - Plane" width="800" height="418"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What It Does:&lt;/strong&gt; Plane is an open-source project management tool designed to track issues, run sprints, and map out product roadmaps. It is a perfect open source alternative for JIRA, Linear, Monday, or Asana.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why Developers &amp;amp; SaaS Love It:&lt;/strong&gt; It’s clean, intuitive, and free, giving teams a flexible way to stay organized without the corporate price tag.&lt;br&gt;&lt;br&gt;
&lt;strong&gt;Main Features:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;Issue Tracking:&lt;/strong&gt; Keep tabs on bugs and tasks effortlessly.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Sprint Planning:&lt;/strong&gt; Run cycles like a pro with built-in tools.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Roadmap Views:&lt;/strong&gt; Visualize your product’s future with clarity.
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Check It Out:&lt;/strong&gt; &lt;a href="https://plane.so/" rel="noopener noreferrer"&gt;plane.so&lt;/a&gt; | Follow: &lt;a href="https://twitter.com/planepowers" rel="noopener noreferrer"&gt;@planepowers&lt;/a&gt;&lt;/p&gt;




&lt;h3&gt;
  
  
  7. Mattermost – The Open-Source Slack Alternative
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Foa8qvf38ih6hlx25pjkx.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Foa8qvf38ih6hlx25pjkx.png" alt="Mattermost – The Open-Source Slack Alternative" width="800" height="452"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What it does:&lt;/strong&gt; Mattermost is an open source alternative to Slack used as a collaboration platform designed with developers and technical teams in mind. It's a self-hosted messaging hub that brings chats, files and tools into one secure place. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why use Mattermost?&lt;/strong&gt; It’s all about control and flexibility. You can host it yourself, tweak it to fit your needs, and keep your data safe behind your firewall. Plus, it has deep integrations and a community-driven vibe that keeps it evolving.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Main Features&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Real-time collaboration&lt;/li&gt;
&lt;li&gt;Secure, Scalable and self-hosting messaging&lt;/li&gt;
&lt;li&gt;1-1 audio calls and screen sharing&lt;/li&gt;
&lt;li&gt;Available in 20 languages&lt;/li&gt;
&lt;li&gt;Channel-based messaging for web, desktop and mobile&lt;/li&gt;
&lt;li&gt;Peer-to-peer forum, and many more...&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Check It Out:&lt;/strong&gt; &lt;a href="https://mattermost.com/" rel="noopener noreferrer"&gt;mattermost.com&lt;/a&gt; | Follow: &lt;a href="https://x.com/mattermost" rel="noopener noreferrer"&gt;@Mattermost&lt;/a&gt;&lt;/p&gt;




&lt;h3&gt;
  
  
  8. PostHog - Open Source Analytics Powerhouse
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F5btmer55lfxsg5um48rh.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F5btmer55lfxsg5um48rh.png" alt="PostHog - Open Source Analytics Powerhouse" width="800" height="420"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What it Does:&lt;/strong&gt; PostHog is an open-source powerhouse that combines product analytics, session replays, and feature flags into one neat package. It'an alternative to Mixpanel or Amplitude. It’s built to help you track user behaviour, test ideas, and improve your product, all while keeping your data in-house if you want.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why use PostHog?:&lt;/strong&gt; It’s got everything you need to dig into user insights without the SaaS subscription baggage. Self-host it for privacy and control, or use their cloud option for speed—either way, it’s a win for teams who want flexibility and power.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Main Features:&lt;/strong&gt;  &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Event-Based Analytics:&lt;/strong&gt; Automatically track clicks, page views, and custom events to see exactly how users interact with your app or site.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Session Replays:&lt;/strong&gt; Watch real user sessions (with privacy controls) to spot bugs, pain points, or UX wins—no guesswork needed.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Feature Flags &amp;amp; A/B Testing:&lt;/strong&gt; Test new features with specific users and measure the impact before going all-in.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Heatmaps:&lt;/strong&gt; Visualize where users click and scroll to optimize your interface like a pro.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Self-Hosted or Cloud:&lt;/strong&gt; Run it on your own servers for total control or use PostHog Cloud for a hassle-free setup—your call!
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Check It Out:&lt;/strong&gt; &lt;a href="https://posthog.com/" rel="noopener noreferrer"&gt;posthog.com&lt;/a&gt; | Follow: &lt;a href="https://twitter.com/posthog" rel="noopener noreferrer"&gt;@posthog&lt;/a&gt;&lt;/p&gt;




&lt;h3&gt;
  
  
  9. n8n – Automate Like a Pro (Zapier Alternative)
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ffs4wea56qtbgy0pzztb6.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ffs4wea56qtbgy0pzztb6.png" alt=" n8n – Automate Like a Pro - Zapier Alternative" width="800" height="576"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What It Does:&lt;/strong&gt; n8n is an open-source workflow automation tool that’s here to take on Zapier—and win! It lets you connect your favourite apps, APIs, and services to automate tasks without the hefty subscription fees. Whether you’re syncing data, triggering actions, or building complex workflows, n8n puts the power in your hands with a visual editor that’s as easy as it is powerful. Plus, you can host it yourself for total control—how cool is that?  &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why use n8n?&lt;/strong&gt; It’s a dream for anyone who loves automation but hates being locked into SaaS pricing or limitations. n8n is flexible, extensible, and built with developers in mind—think of it as your personal automation playground. From startups to SaaS teams, it’s perfect for saving time and streamlining processes without breaking the budget.  &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Main Features:&lt;/strong&gt;  &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Visual Workflow Builder:&lt;/strong&gt; Drag and drop to create automation—no coding required (though coders can dive in too!).
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;App Integrations:&lt;/strong&gt; Connects with hundreds of tools like Slack, Google Sheets, and even custom APIs.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Self-Hosted Option:&lt;/strong&gt; Run it on your server for privacy and unlimited workflows—bye-bye usage caps!
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Custom Scripts:&lt;/strong&gt; Add JavaScript or Python to supercharge your workflows with bespoke logic.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Community-Driven:&lt;/strong&gt; Tons of pre-built nodes and an active community to keep things fresh and helpful.
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Check It Out:&lt;/strong&gt; &lt;a href="https://n8n.io/" rel="noopener noreferrer"&gt;n8n.io&lt;/a&gt; | Follow: &lt;a href="https://twitter.com/n8n_io" rel="noopener noreferrer"&gt;@n8n_io&lt;/a&gt;  &lt;/p&gt;




&lt;h3&gt;
  
  
  10. Cal.com – Your Friendly Calendly Alternative
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fdrck85n0u5jqx99m6kjz.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fdrck85n0u5jqx99m6kjz.png" alt="Cal.com – Your Friendly Calendly Alternative" width="800" height="530"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What It Does:&lt;/strong&gt; Cal.com is an open-source gem that makes scheduling a breeze—no more email ping-pong! It’s a Calendly alternative that lets you sync your calendars and share a link for folks to book time with you, all while keeping things simple and customizable. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why use Cal?&lt;/strong&gt; It’s free for individuals, self-hostable, and puts you in charge of your data. Perfect for devs who want control without the SaaS fuss.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Main Features:&lt;/strong&gt;  &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Calendar Sync:&lt;/strong&gt; Works with Google, Outlook, and Apple Calendar to avoid double bookings.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Custom Links:&lt;/strong&gt; Set your availability and share a personal booking link.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Self-Hosted Option:&lt;/strong&gt; Host it yourself or use their service—your call!
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Try It:&lt;/strong&gt; &lt;a href="https://cal.com/" rel="noopener noreferrer"&gt;cal.com&lt;/a&gt; | Follow: &lt;a href="https://twitter.com/calcom" rel="noopener noreferrer"&gt;@calcom&lt;/a&gt;  &lt;/p&gt;




&lt;h3&gt;
  
  
  11. Documenso – Sign Docs Like a Pro (DocuSign Alternative)
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fl18jybivsla2e7nyhez1.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fl18jybivsla2e7nyhez1.png" alt="Documenso - Docusign Alternative" width="800" height="397"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What It Does:&lt;/strong&gt; Documenso is an open-source buddy that takes on DocuSign, letting you sign and manage documents digitally with ease. It’s straightforward and keeps your data close.  &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why use Documenso ?&lt;/strong&gt; It’s privacy-focused and flexible—great for anyone tired of pricey e-signature tools. Plus, it’s got a human touch that makes signing feel less robotic.  &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Main Features:&lt;/strong&gt;  &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Easy Signing:&lt;/strong&gt; Sign docs fast with a clean, step-by-step flow.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Self-Hosting:&lt;/strong&gt; Keep it on your servers for full control.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;API Integration:&lt;/strong&gt; Connect it to your workflows with an open API.
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Check it out&lt;/strong&gt; &lt;a href="https://documenso.com/" rel="noopener noreferrer"&gt;documenso.com&lt;/a&gt; | Follow: &lt;a href="https://twitter.com/documenso" rel="noopener noreferrer"&gt;@documenso&lt;/a&gt;  &lt;/p&gt;




&lt;h3&gt;
  
  
  12. Plausible – Simple Analytics (Google Analytics Alternative)
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fyv8cr9re1peqrswpjhbi.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fyv8cr9re1peqrswpjhbi.png" alt="Plausible - Google Analytics Alternative" width="800" height="570"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What It Does:&lt;/strong&gt; Plausible is like a breath of fresh air for anyone tired of Google Analytics’ complexity and privacy baggage. It’s an open-source, lightweight tool that tracks your website’s traffic—think page views, visitors, and referrals—without cookies or invasive data grabs.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why use Plausible ?&lt;/strong&gt; It’s easy to use, privacy-first, and lets you keep your data close. Perfect for devs and SaaS folks who want insights without the clutter or consent pop-ups. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Main Features:&lt;/strong&gt;  &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Cookie-Free Tracking:&lt;/strong&gt; No banners needed—fully GDPR, CCPA, and PECR compliant.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Lightweight Script:&lt;/strong&gt; Under 1KB, so your site stays fast.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Simple Dashboard:&lt;/strong&gt; All your stats in one glance, no digging required.
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Try It:&lt;/strong&gt; &lt;a href="https://plausible.io/" rel="noopener noreferrer"&gt;plausible.io&lt;/a&gt; | Follow: &lt;a href="https://twitter.com/plausiblehq" rel="noopener noreferrer"&gt;@plausiblehq&lt;/a&gt;  &lt;/p&gt;




&lt;h3&gt;
  
  
  13. Formbricks – Feedback That Feels Human (Typeform Alternative)
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fcc4vwq36csf3tn0bo9zj.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fcc4vwq36csf3tn0bo9zj.png" alt="Formbricks Typeform's open source alternative" width="800" height="448"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What It Does:&lt;/strong&gt; Formbricks is an open-source champ for gathering user feedback—think surveys and forms—without the Typeform price tag. It’s built to help you understand your users through quick, targeted questions, all while staying flexible and privacy-friendly.  &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why use Formbricks?&lt;/strong&gt; It’s a developer’s dream—customizable and self-hostable—so you can skip the SaaS fees and still get real, actionable insights from your audience.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Main Features:&lt;/strong&gt;  &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;In-App Surveys:&lt;/strong&gt; Ask users right where they are—no redirects.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Open-Source Freedom:&lt;/strong&gt; Host it yourself or use their cloud option.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Granular Targeting:&lt;/strong&gt; Reach specific users based on behaviour or traits.
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Try It:&lt;/strong&gt; &lt;a href="https://formbricks.com/" rel="noopener noreferrer"&gt;formbricks.com&lt;/a&gt; | Follow: &lt;a href="https://twitter.com/formbricks" rel="noopener noreferrer"&gt;@formbricks&lt;/a&gt;  &lt;/p&gt;




&lt;h2&gt;
  
  
  Why Make the Switch?
&lt;/h2&gt;

&lt;p&gt;These open-source tools are more than just freebies—they’re crafted by passionate communities who &lt;em&gt;get&lt;/em&gt; the grind of developers and SaaS builders like you. Think total flexibility, full control over your data, and the freedom to tweak every detail to match your vision. &lt;/p&gt;

&lt;p&gt;Oh, and the cherry on top? You’re sidestepping those pesky subscription fees that eat into your budget. &lt;/p&gt;

&lt;p&gt;It’s not just about saving cash—it’s about building smarter, on your terms. &lt;/p&gt;

&lt;p&gt;Who wouldn’t jump at that?&lt;/p&gt;




&lt;h3&gt;
  
  
  About us
&lt;/h3&gt;

&lt;p&gt;We, at  &lt;a href="https://themeselection.com/" rel="noopener noreferrer"&gt;&lt;strong&gt;ThemeSelection&lt;/strong&gt;&lt;/a&gt;, provide selected high-quality, modern design, professional and easy-to-use premium and free  &lt;a href="https://themeselection.com/item/category/admin-templates/" rel="noopener noreferrer"&gt;&lt;strong&gt;Admin Panels&lt;/strong&gt;&lt;/a&gt;, such as  &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://themeselection.com/item/category/bootstrap-templates/" rel="noopener noreferrer"&gt;&lt;strong&gt;Bootstrap Templates&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://themeselection.com/item/category/react-templates/" rel="noopener noreferrer"&gt;&lt;strong&gt;React  Dashboard&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://themeselection.com/item/category/asp-net-core-templates/" rel="noopener noreferrer"&gt;&lt;strong&gt;Asp NET Core Templates&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://themeselection.com/item/category/vue-templates/" rel="noopener noreferrer"&gt;&lt;strong&gt;Vue Templates&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://themeselection.com/item/category/nextjs-templates/" rel="noopener noreferrer"&gt;&lt;strong&gt;Next JS Templates&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://themeselection.com/item/category/ui-kits/" rel="noopener noreferrer"&gt;&lt;strong&gt;UI Kits&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://themeselection.com/item/category/saas-boilerplate/" rel="noopener noreferrer"&gt;&lt;strong&gt;SaaS Boilerplate&lt;/strong&gt;&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;We also offer the best &lt;a href="https://flyonui.com/" rel="noopener noreferrer"&gt;Tailwind CSS Component Library&lt;/a&gt;. You can also consider checking &lt;a href="https://allutilitycss.com/" rel="noopener noreferrer"&gt;All UtilityCSS&lt;/a&gt; for awesome Tailwind Resources &amp;amp; &lt;a href="https://allshadcn.com/" rel="noopener noreferrer"&gt;All ShadCN&lt;/a&gt; for useful Shadcn Resources such as &lt;a href="https://shadcnstudio.com/" rel="noopener noreferrer"&gt;Shadcn Blocks&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;If you are looking for  &lt;a href="https://themeselection.com/item/category/free-admin-templates/" rel="noopener noreferrer"&gt;&lt;strong&gt;free admin templates&lt;/strong&gt;&lt;/a&gt;, UI kits and themes then do visit our site…!!&lt;/p&gt;

&lt;p&gt;Written by &lt;a class="mentioned-user" href="https://dev.to/abhidave001"&gt;@abhidave001&lt;/a&gt;  &lt;/p&gt;

</description>
      <category>saas</category>
      <category>opensource</category>
      <category>productivity</category>
      <category>programming</category>
    </item>
    <item>
      <title>How Do You Set Cookie Consent in Laravel? 🍪</title>
      <dc:creator>ThemeSelection</dc:creator>
      <pubDate>Tue, 17 Dec 2024 13:38:44 +0000</pubDate>
      <link>https://forem.com/themeselection/how-do-you-set-cookie-consent-in-laravel-iop</link>
      <guid>https://forem.com/themeselection/how-do-you-set-cookie-consent-in-laravel-iop</guid>
      <description>&lt;p&gt;In this tutorial, we are going to walk you through how to set up a cookie consent bar and get it working in your Laravel app. But before we dive into that, let's take a moment to understand what cookies are all about!&lt;/p&gt;

&lt;h2&gt;
  
  
  What are cookies?
&lt;/h2&gt;

&lt;p&gt;Cookies are super important for how websites work and can improve your browsing experience! They are small files stored on your browser by websites for the betterment of your browsing experience. They can save information such as user preferences, website settings, and session details. &lt;/p&gt;

&lt;p&gt;Besides, The cookies remain in your browser until they expire or are manually cleared. When you revisit a website, your browser sends the stored cookies back to the server, allowing the site to load with your previous preferences or settings, improving usability and personalization.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why do we need cookie consent?
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fto6zki43zi5x8r27uxi7.jpeg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fto6zki43zi5x8r27uxi7.jpeg" alt="cookie consent" width="800" height="343"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The privacy laws, the &lt;strong&gt;General Data Protection Regulation (GDPR)&lt;/strong&gt; within the European Union and the &lt;strong&gt;California Consumer Privacy Act (CCPA)&lt;/strong&gt; in the U.S., therefore require that websites inform users about data collection practices.&lt;/p&gt;

&lt;p&gt;Consent ensures that the website complies with these laws, therefore avoiding penalties and ensuring transparent handling of data.&lt;/p&gt;

&lt;p&gt;Cookies may collect personal data, for instance, browsing habits, preferences, and even location. Consent ensures that users know what data is being collected and how it will be used.&lt;/p&gt;

&lt;p&gt;By seeking consent, the website is enabling users to determine whether they are comfortable with the data being collected. It aligns with the principle of user autonomy over personal information.&lt;/p&gt;

&lt;p&gt;Proper information given regarding cookies and obtaining consent between the user and the website create trust. Users are likely to interact with websites which respect their privacy.&lt;/p&gt;

&lt;p&gt;While some cookies, such as basic functionality cookies, may not need consent, others related to advertising, tracking, or analytics often do. Obtaining consent helps distinguish these cases while keeping the website user-friendly and compliant.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is the spatie/laravel-cookie-consent package?
&lt;/h2&gt;


&lt;div class="ltag-github-readme-tag"&gt;
  &lt;div class="readme-overview"&gt;
    &lt;h2&gt;
      &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fassets.dev.to%2Fassets%2Fgithub-logo-5a155e1f9a670af7944dd5e12375bc76ed542ea80224905ecaf878b9157cdefc.svg" alt="GitHub logo"&gt;
      &lt;a href="https://github.com/spatie" rel="noopener noreferrer"&gt;
        spatie
      &lt;/a&gt; / &lt;a href="https://github.com/spatie/laravel-cookie-consent" rel="noopener noreferrer"&gt;
        laravel-cookie-consent
      &lt;/a&gt;
    &lt;/h2&gt;
    &lt;h3&gt;
      Make your Laravel app comply with the crazy EU cookie law
    &lt;/h3&gt;
  &lt;/div&gt;
  &lt;div class="ltag-github-body"&gt;
    
&lt;div id="readme" class="md"&gt;
&lt;div class="markdown-heading"&gt;
&lt;h1 class="heading-element"&gt;Simple, customizable cookie consent message for Laravel&lt;/h1&gt;
&lt;/div&gt;
&lt;p&gt;&lt;a href="https://packagist.org/packages/spatie/laravel-cookie-consent" rel="nofollow noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/8d5b74d9d27abb1bc361b78e4424904819ec6c7c844146570592bc9288d41105/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f7370617469652f6c61726176656c2d636f6f6b69652d636f6e73656e742e7376673f7374796c653d666c61742d737175617265" alt="Latest Version on Packagist"&gt;&lt;/a&gt;
&lt;a href="https://github.com/spatie/laravel-cookie-consentLICENSE.md" rel="noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/5ddd6787b46ff6b3a6e8bfa779dc451433a990e470ffe28b66c8fb4a3e5035ca/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265" alt="Software License"&gt;&lt;/a&gt;
&lt;a href="https://github.com/spatie/laravel-cookie-consent/actions/workflows/run-tests.yml" rel="noopener noreferrer"&gt;&lt;img src="https://github.com/spatie/laravel-cookie-consent/actions/workflows/run-tests.yml/badge.svg" alt="run-tests"&gt;&lt;/a&gt;
&lt;a href="https://packagist.org/packages/spatie/laravel-cookie-consent" rel="nofollow noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/69d86780b7ab30e974c2c8749c02158043fcac2381cf175c22050d9f136b71ae/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f7370617469652f6c61726176656c2d636f6f6b69652d636f6e73656e742e7376673f7374796c653d666c61742d737175617265" alt="Total Downloads"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;This package adds a simple, customizable cookie consent message to your site. When the site loads, the banner appears and lets users consent to cookies. Once consent is given, the banner hides and stays hidden.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;What this package does not:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Include an option to 'Decline' all cookies, which might be required.&lt;/li&gt;
&lt;li&gt;Block trackers and cookies before consent. You need to handle this yourself.&lt;/li&gt;
&lt;li&gt;Include options for different consent categories like "Necessary" or "Marketing".&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;For more advanced cookie consent options in Laravel, consider these alternatives.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/whitecube/laravel-cookie-consent" rel="noopener noreferrer"&gt;whitecube/laravel-cookie-consent&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/statikbe/laravel-cookie-consent" rel="noopener noreferrer"&gt;statikbe/laravel-cookie-consent&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/devrabiul/laravel-cookie-consent" rel="noopener noreferrer"&gt;devrabiul/laravel-cookie-consent&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;If you need an implementation of cookie consent for &lt;a href="https://github.com/filamentphp/filament" rel="noopener noreferrer"&gt;Filament&lt;/a&gt; you can evaluate this plugin:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/marcogermani87/filament-cookie-consent" rel="noopener noreferrer"&gt;marcogermani87/filament-cookie-consent&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;div class="markdown-heading"&gt;
&lt;h2 class="heading-element"&gt;Support us&lt;/h2&gt;
&lt;/div&gt;
&lt;p&gt;&lt;a href="https://spatie.be/github-ad-click/laravel-cookie-consent" rel="nofollow noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/9da7ffd8ffd106d4dfc9a899eb9b57da45a1a7dab1633547687aded6ffa7c55f/68747470733a2f2f6769746875622d6164732e73332e65752d63656e7472616c2d312e616d617a6f6e6177732e636f6d2f6c61726176656c2d636f6f6b69652d636f6e73656e742e6a70673f743d31" width="419px"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;We invest a lot of resources into creating &lt;a href="https://spatie.be/open-source" rel="nofollow noopener noreferrer"&gt;best in class open source packages&lt;/a&gt;. You can support us by &lt;a href="https://spatie.be/open-source/support-us" rel="nofollow noopener noreferrer"&gt;buying one of our paid products&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;We highly appreciate you sending us a postcard from your hometown…&lt;/p&gt;
&lt;/div&gt;
  &lt;/div&gt;
  &lt;div class="gh-btn-container"&gt;&lt;a class="gh-btn" href="https://github.com/spatie/laravel-cookie-consent" rel="noopener noreferrer"&gt;View on GitHub&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;


&lt;p&gt;The &lt;code&gt;spatie/laravel-cookie-consent&lt;/code&gt; package is a Laravel tool that adds a customizable cookie consent banner to your website, helping you comply with EU cookie laws. When users visit your site, the banner appears, allowing them to consent to cookie usage. Once consent is given, the banner hides and remains hidden on subsequent visits.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Key Features:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;Customizable Consent Message:&lt;/strong&gt; Easily modify the text and appearance of the consent banner to align with your website's design and messaging.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Automatic Handling:&lt;/strong&gt; The package manages the display and hiding of the consent banner based on user interaction, simplifying compliance efforts.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Limitations:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;No 'Decline' Option:&lt;/strong&gt; The package does not include a 'Decline' button, which might be required for full compliance in certain jurisdictions.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Does Not Block Cookies Before Consent:&lt;/strong&gt; It doesn't automatically block cookies or trackers before user consent; you'll need to implement this functionality yourself.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;No Consent Categories:&lt;/strong&gt; The package doesn't offer options for different consent categories like "Necessary" or "Marketing" cookies.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you want more advanced cookie consent features, then an alternative is also available.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;code&gt;whitecube/laravel-cookie-consent&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;  &lt;code&gt;statikbe/laravel-cookie-consent&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;In this tutorial, we will utilize the &lt;code&gt;spatie/laravel-cookie-consent&lt;/code&gt; package.&lt;/p&gt;

&lt;h2&gt;
  
  
  Installation
&lt;/h2&gt;

&lt;p&gt;You can easily integrate this package into your existing project, or you can use the command below to create a new Laravel application.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Create a Laravel project.&lt;br&gt;
&lt;/p&gt;
&lt;pre class="highlight jsx"&gt;&lt;code&gt;&lt;span class="nx"&gt;composer&lt;/span&gt; &lt;span class="nx"&gt;create&lt;/span&gt;&lt;span class="o"&gt;-&lt;/span&gt;&lt;span class="nx"&gt;project&lt;/span&gt; &lt;span class="o"&gt;--&lt;/span&gt;&lt;span class="nx"&gt;prefer&lt;/span&gt;&lt;span class="o"&gt;-&lt;/span&gt;&lt;span class="nx"&gt;dist&lt;/span&gt; &lt;span class="nx"&gt;laravel&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="nx"&gt;laravel&lt;/span&gt; &lt;span class="nx"&gt;fresh&lt;/span&gt;&lt;span class="o"&gt;-&lt;/span&gt;&lt;span class="nx"&gt;laravel&lt;/span&gt;

&lt;/code&gt;&lt;/pre&gt;

&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Now, let's proceed with the project.&lt;br&gt;
&lt;/p&gt;
&lt;pre class="highlight jsx"&gt;&lt;code&gt;&lt;span class="nx"&gt;cd&lt;/span&gt; &lt;span class="nx"&gt;fresh&lt;/span&gt;&lt;span class="o"&gt;-&lt;/span&gt;&lt;span class="nx"&gt;laravel&lt;/span&gt;

&lt;/code&gt;&lt;/pre&gt;

&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;We need to install the &lt;code&gt;spatie/laravel-cookie-consent&lt;/code&gt; package. This package will automatically register itself upon installation.&lt;br&gt;
&lt;/p&gt;
&lt;pre class="highlight jsx"&gt;&lt;code&gt;&lt;span class="nx"&gt;composer&lt;/span&gt; &lt;span class="nx"&gt;require&lt;/span&gt; &lt;span class="nx"&gt;spatie&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="nx"&gt;laravel&lt;/span&gt;&lt;span class="o"&gt;-&lt;/span&gt;&lt;span class="nx"&gt;cookie&lt;/span&gt;&lt;span class="o"&gt;-&lt;/span&gt;&lt;span class="nx"&gt;consent&lt;/span&gt;

&lt;/code&gt;&lt;/pre&gt;

&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You may optionally choose to publish the configuration file.&lt;br&gt;
&lt;/p&gt;
&lt;pre class="highlight jsx"&gt;&lt;code&gt;&lt;span class="nx"&gt;php&lt;/span&gt; &lt;span class="nx"&gt;artisan&lt;/span&gt; &lt;span class="nx"&gt;vendor&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="nx"&gt;publish&lt;/span&gt; &lt;span class="o"&gt;--&lt;/span&gt;&lt;span class="nx"&gt;provider&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;Spatie&lt;/span&gt;&lt;span class="se"&gt;\\&lt;/span&gt;&lt;span class="s2"&gt;CookieConsent&lt;/span&gt;&lt;span class="se"&gt;\\&lt;/span&gt;&lt;span class="s2"&gt;CookieConsentServiceProvider&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt; &lt;span class="o"&gt;--&lt;/span&gt;&lt;span class="nx"&gt;tag&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;cookie-consent-config&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;

&lt;/code&gt;&lt;/pre&gt;

&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The contents of the published configuration file are as follows:&lt;br&gt;
&lt;/p&gt;
&lt;pre class="highlight jsx"&gt;&lt;code&gt;&lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;

    &lt;span class="cm"&gt;/*
     * Use this setting to enable the cookie consent dialog.
     */&lt;/span&gt;
    &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;enabled&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="nf"&gt;env&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;COOKIE_CONSENT_ENABLED&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="kc"&gt;true&lt;/span&gt;&lt;span class="p"&gt;),&lt;/span&gt;

    &lt;span class="cm"&gt;/*
     * The name of the cookie in which we store if the user
     * has agreed to accept the conditions.
     */&lt;/span&gt;
    &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;cookie_name&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;laravel_cookie_consent&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;

    &lt;span class="cm"&gt;/*
     * Set the cookie duration in days.  Default is 365 * 20.
     */&lt;/span&gt;
    &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;cookie_lifetime&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="mi"&gt;365&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="mi"&gt;20&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
&lt;span class="p"&gt;];&lt;/span&gt;

&lt;/code&gt;&lt;/pre&gt;

&lt;/li&gt;
&lt;li&gt;&lt;p&gt;The cookie domain is defined by the 'domain' key in the &lt;code&gt;config/session.php&lt;/code&gt; file. Ensure that you add a value for &lt;code&gt;SESSION_DOMAIN&lt;/code&gt; in your .env file. If you are using a URL with a port, such as &lt;code&gt;'localhost:3000'&lt;/code&gt;, this package will not function properly until you make this adjustment.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;To ensure that the cookie consent bar loads on every page, include &lt;code&gt;@include('cookie-consent::index')&lt;/code&gt; in your application's entry point or the layout file.&lt;/p&gt;

&lt;h2&gt;
  
  
  Usages
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Frznw9sn4c5n7gku42txs.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Frznw9sn4c5n7gku42txs.png" alt="Laravel cookie consent example" width="800" height="325"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;To enable the cookie consent bar, add the variable &lt;code&gt;COOKIE_CONSENT_ENABLED&lt;/code&gt; to the .env file and set it to &lt;code&gt;true&lt;/code&gt;. Once you have enabled it, a nice banner will appear like this:&lt;/p&gt;

&lt;p&gt;When a user clicks the "&lt;strong&gt;Allow cookies&lt;/strong&gt;" button to allow cookies, the &lt;code&gt;laravel_cookie_consent&lt;/code&gt; variable is set to &lt;code&gt;1&lt;/code&gt; in the browser's cookie storage. This value can be used to run or include any scripts in your application, such as Google Analytics code.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight jsx"&gt;&lt;code&gt;&lt;span class="p"&gt;@&lt;/span&gt;&lt;span class="nd"&gt;if&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="o"&gt;!&lt;/span&gt;&lt;span class="nf"&gt;config&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;cookie-consent.enabled&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="o"&gt;||&lt;/span&gt; &lt;span class="err"&gt;\\&lt;/span&gt;&lt;span class="nx"&gt;Illuminate&lt;/span&gt;&lt;span class="err"&gt;\\&lt;/span&gt;&lt;span class="nx"&gt;Support&lt;/span&gt;&lt;span class="err"&gt;\\&lt;/span&gt;&lt;span class="nx"&gt;Facades&lt;/span&gt;&lt;span class="err"&gt;\\&lt;/span&gt;&lt;span class="nx"&gt;Cookie&lt;/span&gt;&lt;span class="p"&gt;::&lt;/span&gt;&lt;span class="nf"&gt;get&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nf"&gt;config&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;cookie-consent.cookie_name&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;))&lt;/span&gt; &lt;span class="o"&gt;!==&lt;/span&gt; &lt;span class="kc"&gt;null&lt;/span&gt; &lt;span class="p"&gt;)&lt;/span&gt;
    &lt;span class="c1"&gt;// conditionally render code here&lt;/span&gt;
&lt;span class="p"&gt;@&lt;/span&gt;&lt;span class="nd"&gt;endif&lt;/span&gt;

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;All you need to do is create a basic cookie consent in a Laravel application.&lt;/p&gt;

&lt;p&gt;Developing an advanced cookie management &lt;strong&gt;dashboard&lt;/strong&gt; requires consideration of a user-friendly interface that enables users to turn on or off the cookie consent bar without changing the code.&lt;/p&gt;

&lt;p&gt;We should also implement a feature to dynamically add scripts in our Laravel application, along with an option for users to &lt;strong&gt;opt in&lt;/strong&gt; or &lt;strong&gt;opt out&lt;/strong&gt; of cookie consent for each specific script.&lt;/p&gt;

&lt;p&gt;No need to worry &lt;strong&gt;Jetship Laravel &lt;a href="https://themeselection.com/item/category/saas-boilerplate/" rel="noopener noreferrer"&gt;SaaS Boilerplate&lt;/a&gt;&lt;/strong&gt; already includes these basic features and more!&lt;/p&gt;

&lt;p&gt;Besides cookie consent functionality, the Jetship &lt;strong&gt;&lt;a href="https://demos.themeselection.com/jetship-laravel-starter-kit/" rel="noopener noreferrer"&gt;Laravel SaaS Starter Kit&lt;/a&gt;&lt;/strong&gt; that is built on &lt;a href="https://flyonui.com" rel="noopener noreferrer"&gt;FlyonUI&lt;/a&gt; offers an impressive range of features, including:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  A &lt;strong&gt;robust and secure authentication system&lt;/strong&gt; to protect user accounts.&lt;/li&gt;
&lt;li&gt;  Integration with two leading payment gateways: &lt;strong&gt;Stripe&lt;/strong&gt; and &lt;strong&gt;Lemon Squeezy&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;  A fully managed, &lt;strong&gt;SEO-friendly blog&lt;/strong&gt; for content marketing.&lt;/li&gt;
&lt;li&gt;  Comprehensive &lt;strong&gt;roles and permissions&lt;/strong&gt; management for fine-grained access control.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Reusable, niche-specific UI components&lt;/strong&gt; to accelerate development.&lt;/li&gt;
&lt;li&gt;  And many other powerful tools to streamline your SaaS development.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;You can explore the live demo &lt;a href="https://demos.themeselection.com/jetship-laravel-starter-kit-demo/" rel="noopener noreferrer"&gt;here&lt;/a&gt;. Experience the difference the Jetship Laravel starter kit makes!&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fxj6rbz8ww1q2zl5yfevx.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fxj6rbz8ww1q2zl5yfevx.png" alt="Laravel cookie consent demo" width="800" height="589"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;Check our recently launched Shadcn/studio if you're a shadcn lover!&lt;/p&gt;

&lt;p&gt;&lt;a href="https://shadcnstudio.com" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fdducfy6v3t3w9n1yylwp.png" alt="Shadcn/studio" width="800" height="420"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Shadcn/studio offers customizable variants of components, blocks, and templates. Preview, customize, and copy-paste them into your apps with ease.&lt;/p&gt;




&lt;h2&gt;
  
  
  Conclusion:
&lt;/h2&gt;

&lt;p&gt;Integrating a cookie consent banner into your Laravel application is a vital step toward ensuring compliance with privacy regulations like GDPR and CCPA. It not only fosters user trust but also enhances transparency regarding data collection and usage practices.&lt;/p&gt;

&lt;p&gt;By leveraging the &lt;strong&gt;spatie/laravel-cookie-consent&lt;/strong&gt; package, you can implement a fully customizable and user-friendly cookie consent solution with minimal effort. This package simplifies the process of informing users about cookies, managing their preferences, and adhering to legal requirements.&lt;/p&gt;

&lt;p&gt;Additionally, with advanced tools like &lt;strong&gt;Jetship Laravel SaaS Boilerplate&lt;/strong&gt;, you can take your application’s functionality to the next level—streamlining development while ensuring compliance with built-in cookie consent and other essential features.&lt;/p&gt;

&lt;p&gt;With the right tools and a clear implementation strategy, you’re well on your way to creating a more transparent, user-focused experience. Start building applications that not only meet regulatory standards but also enhance user trust and engagement.&lt;/p&gt;

&lt;p&gt;Happy coding!&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>webdev</category>
      <category>laravel</category>
      <category>programming</category>
    </item>
    <item>
      <title>10+ Trending Animated UI Component Libraries 🔥</title>
      <dc:creator>Ajay Kalal</dc:creator>
      <pubDate>Wed, 06 Nov 2024 11:06:34 +0000</pubDate>
      <link>https://forem.com/themeselection/10-trending-animated-ui-component-libraries-4joe</link>
      <guid>https://forem.com/themeselection/10-trending-animated-ui-component-libraries-4joe</guid>
      <description>&lt;p&gt;Am I the only one who has been quite impressed by these recently trending Animated UI component libraries? &lt;/p&gt;

&lt;p&gt;As we all know, user interactions today are about more than just clicks and scrolls, they're just about experiences that give an engaging and delightful experience. &lt;/p&gt;

&lt;p&gt;Developers use these libraries for two main reasons: A - it saves time, and B - to make web interactions feel smooth.&lt;/p&gt;

&lt;p&gt;Another key reason developers are turning to these libraries is that they help create landing pages that are not only visually appealing and smooth but also give a premium feel, enhancing the page's ability to convert visitors into users or customers.&lt;/p&gt;

&lt;p&gt;In this blog, we will list the animated UI libraries that you should consider incorporating into your projects.&lt;/p&gt;




&lt;h2&gt;
  
  
  Table of Contents
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Introduction&lt;/li&gt;
&lt;li&gt;
Animated UI Libraries

&lt;ul&gt;
&lt;li&gt;MagicUI&lt;/li&gt;
&lt;li&gt;Aceternity UI&lt;/li&gt;
&lt;li&gt;UI Layout&lt;/li&gt;
&lt;li&gt;Cult UI&lt;/li&gt;
&lt;li&gt;Eldora UI&lt;/li&gt;
&lt;li&gt;Syntax UI&lt;/li&gt;
&lt;li&gt;Hover.Dev&lt;/li&gt;
&lt;li&gt;Svelte Animation Components&lt;/li&gt;
&lt;li&gt;LunarUI&lt;/li&gt;
&lt;li&gt;Animata&lt;/li&gt;
&lt;li&gt;InspiraUI&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;Conclusion&lt;/li&gt;

&lt;/ul&gt;




&lt;h2&gt;
  
  
  Animated UI Libraries
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fdic93si1jzw7azppnq3v.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fdic93si1jzw7azppnq3v.gif" alt="Bento UI Animated UI Component LIbrary" width="800" height="518"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Credit: &lt;a href="https://flames.design/projects/12028-Bento-UI-Animation-UI-Design-Trend-Alert-" rel="noopener noreferrer"&gt;Kristina Volchek&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Now, without wasting any time, let’s jump straight into the list of animated UI libraries that can bring your projects to life with stunning visuals and smooth interactions.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;Note: The order of this list does not indicate any ranking or preference; the libraries are simply listed in a random order.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h3&gt;
  
  
  &lt;a href="https://magicui.design/" rel="noopener noreferrer"&gt;MagicUI&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Flaoo24gzzy47slebj7pe.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Flaoo24gzzy47slebj7pe.png" alt="MagicUI - Animated UI Component Library" width="800" height="457"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;An open-source UI library that provides free and open-source animated components built with React, Typescript, Tailwind CSS, and Framer Motion and the perfect companion for shadcn/ui.&lt;/p&gt;

&lt;p&gt;It provides unique components like a Marquee, Hero Video Dialog, Animated list, Dock, Mockups, and more. Apart from that, it also offers pre-built templates in its pro version. &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;50+ Free Components&lt;/li&gt;
&lt;li&gt;11k+ GitHub Stars&lt;/li&gt;
&lt;li&gt;MIT License for both personal and commercial projects&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://ui.aceternity.com/" rel="noopener noreferrer"&gt;Aceternity UI&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fbdoa5jeym3kh99do3hyq.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fbdoa5jeym3kh99do3hyq.png" alt="Aceternity UI" width="800" height="481"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;A popular library offers customizable components for quickly building stunning, high-performance sites. It supports Next.js, React.js, TailwindCSS, and Framer Motion.&lt;/p&gt;

&lt;p&gt;You can easily copy and paste the components into your projects. It has many unique components like Aurora background, Background beams, interactive GitHub globe, Lens effect on images, and many more. &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;70+ Free Components&lt;/li&gt;
&lt;li&gt;MIT License for both personal and commercial projects&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.ui-layouts.com/" rel="noopener noreferrer"&gt;UI Layout&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F075w1hvrjzpgfavfh4ig.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F075w1hvrjzpgfavfh4ig.png" alt="UI-Layout Interactive UI component library" width="800" height="454"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;UI-Layout is an interactive animated component library designed for web developers using frameworks like React and Next.js. Built on Tailwind CSS, Framer Motion, and GSAP (GreenSock Animation Platform)&lt;/p&gt;

&lt;p&gt;It provides highly customizable components like motion numbers, image mouse trails, animated sliders, scroll animations, sparkles, and many more. &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;50+ Animated UI components&lt;/li&gt;
&lt;li&gt;600+ GitHub stars&lt;/li&gt;
&lt;li&gt;MIT License for both personal and commercial projects&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.cult-ui.com/" rel="noopener noreferrer"&gt;Cult UI&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgb0d9g1qzbd6vpzf5e5l.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgb0d9g1qzbd6vpzf5e5l.png" alt="Cult UI" width="800" height="502"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Cult/UI is an open-source collection of reusable components, themes &amp;amp; templates designed for design engineers to integrate into their React applications. Styled with Tailwind CSS and fully compatible with Shadcn&lt;/p&gt;

&lt;p&gt;It supports copy paste feature and offers useful components like shader lens blur, Dynamic island, customizable Fractal grid, and many more. &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;25+ UI components, 6 Fullstack shadcn templates&lt;/li&gt;
&lt;li&gt;1.5k GitHub stars&lt;/li&gt;
&lt;li&gt;MIT License for both personal and commercial projects&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.eldoraui.site/" rel="noopener noreferrer"&gt;Eldora UI&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fh3aoc7kkeetzxuwohg9j.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fh3aoc7kkeetzxuwohg9j.png" alt="Eldora UI" width="800" height="436"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;It's an open-source animated UI component library that provides a collection of reusable components that you can copy and paste into your web apps. &lt;/p&gt;

&lt;p&gt;Built with React, TypeScript, Tailwind CSS, and Framer Motion, it provides developers with customizable elements to enhance user interfaces. &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;25+ Components with varieties, Templates&lt;/li&gt;
&lt;li&gt;1.2k GitHub stars&lt;/li&gt;
&lt;li&gt;MIT License for both personal and commercial projects&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://syntaxui.com/" rel="noopener noreferrer"&gt;Syntax UI&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ff85d8gpum7ry6thvnzkh.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ff85d8gpum7ry6thvnzkh.png" alt="Syntax UI" width="800" height="494"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Syntax is an open-source project that provides pre-built, Tailwind CSS-powered components, animations, and effects - brought to life using Framer Motion. &lt;/p&gt;

&lt;p&gt;Furthermore, it provides a diverse range of components like Tabs &amp;amp; toggles, pricing tables, testimonials, emoji confetti effects, and many more. &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;25+ Animated UI Components&lt;/li&gt;
&lt;li&gt;800+ GitHub Stars&lt;/li&gt;
&lt;li&gt;MIT License for both personal and commercial projects &lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.hover.dev/" rel="noopener noreferrer"&gt;Hover.Dev&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fl29y0y8my3gpmx5ifxsv.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fl29y0y8my3gpmx5ifxsv.png" alt="Hover.dev Animated UI Component for React &amp;amp; Tailwind" width="800" height="493"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Hover.dev library helps you to add interactive, animated UI components and templates for React,  Tailwind CSS, Framer motion &amp;amp; more.  It works on a freemium model where you can unlock all the components using their Hover Pro. &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;38 Components&lt;/li&gt;
&lt;li&gt;Hover pro $49/Forever&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://animation-svelte.vercel.app/" rel="noopener noreferrer"&gt;Svelte Animation Components&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fh5jttjgzjlsle4brnelz.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fh5jttjgzjlsle4brnelz.png" alt="Svelte Animation Components" width="800" height="493"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The Svelte Animation Components library offers a collection of free, open-source components designed to enhance Svelte applications with engaging animations. &lt;/p&gt;

&lt;p&gt;Built using Tailwind CSS and Svelte Motion, this library provides developers with customizable and unique components like marquee, dock, meteors, ripple effect, and many more. &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;580 GitHub stars&lt;/li&gt;
&lt;li&gt;50+ Free components. &lt;/li&gt;
&lt;li&gt;MIT License for both personal and commercial projects&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://lunarui.dev/" rel="noopener noreferrer"&gt;LunarUI&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fmffshf6dcb9fsxzyqb4o.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fmffshf6dcb9fsxzyqb4o.png" alt="LunarUI UI Animation component library" width="800" height="493"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;LunarUI is a premium component library that provides a collection of interactive and animated TailwindCSS components built for React JS and Vue JS. &lt;/p&gt;

&lt;p&gt;Their components are fully customizable, allowing developers to tailor them to specific project requirements.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;20+ UI animated components and 1 Landing Page&lt;/li&gt;
&lt;li&gt;$59.00 Lifetime access. Free updates&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://animata.design" rel="noopener noreferrer"&gt;Animata&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F0651rod75c66szfmdleo.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F0651rod75c66szfmdleo.png" alt="Animata" width="800" height="493"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Animata is a free and open-source collection of hand-crafted animations, effects, and interactions that you can seamlessly integrate into your project with a simple copy and paste. The animations are built using TailwindCSS and React.js. &lt;/p&gt;

&lt;p&gt;It provides a diverse range of components like border tail, mirror text, widget cards, bento grids, and many more. &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;1k GitHub starts&lt;/li&gt;
&lt;li&gt;80+ UI animated components&lt;/li&gt;
&lt;li&gt;MIT License for both personal and commercial projects. &lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://inspira-ui.com" rel="noopener noreferrer"&gt;InspiraUI&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fzvdl0t4h7lxmya3j5zn6.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fzvdl0t4h7lxmya3j5zn6.png" alt="InspiraUI Animated UI component library built for Vue &amp;amp; Nuxtjs" width="800" height="493"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;InspiraUI is an open-source library that provides a collection of elegant, ready-to-use Vue components designed to be flexible and easy to integrate. &lt;/p&gt;

&lt;p&gt;It is built with shadcn-vue, &lt;code&gt;@vueuse/motion&lt;/code&gt;, and TailwindCSS, it provides developers with customizable elements to enhance user interfaces. &lt;/p&gt;

&lt;p&gt;With InspiraUI you unlock many different components like glow border, lamp effect, link preview, logo origami, particle image, and many more. &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;50+ UI Components&lt;/li&gt;
&lt;li&gt;800+ GitHub stars&lt;/li&gt;
&lt;li&gt;MIT License for both personal and commercial projects.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;There you go! These are some of the best Animated UI Component Libraries we've encountered. Each of these libraries can help you enhance user experience, save development time, and create a polished, modern feel for your projects.&lt;/p&gt;

&lt;p&gt;If you know of any additional animated UI libraries that we missed, please let us know in the comments. We're always looking to share more resources with developers who want to bring captivating UI experiences to their users.&lt;/p&gt;




&lt;h3&gt;
  
  
  About us
&lt;/h3&gt;

&lt;p&gt;We, at  &lt;a href="https://themeselection.com/" rel="noopener noreferrer"&gt;&lt;strong&gt;ThemeSelection&lt;/strong&gt;&lt;/a&gt;, provide selected high-quality, modern design, professional and easy-to-use premium and free  &lt;a href="https://themeselection.com/item/category/admin-templates/" rel="noopener noreferrer"&gt;&lt;strong&gt;Admin Panels&lt;/strong&gt;&lt;/a&gt;, such as  &lt;a href="https://themeselection.com/item/category/bootstrap-admin-templates/" rel="noopener noreferrer"&gt;&lt;strong&gt;bootstrap admin template&lt;/strong&gt;&lt;/a&gt;,  &lt;a href="https://themeselection.com/item/category/react-admin-templates/" rel="noopener noreferrer"&gt;&lt;strong&gt;React Admin Dashboard&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt;,&lt;/strong&gt;  &lt;a href="https://themeselection.com/item/category/asp-net-dashboard/" rel="noopener noreferrer"&gt;&lt;strong&gt;Asp NET Core Admin Dashboard&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt;,&lt;/strong&gt;  &lt;a href="https://themeselection.com/item/category/vuejs-admin-templates/" rel="noopener noreferrer"&gt;&lt;strong&gt;Vue Admin Template&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt;,&lt;/strong&gt;  &lt;a href="https://themeselection.com/item/category/next-js-admin-template/" rel="noopener noreferrer"&gt;&lt;strong&gt;Next JS Dashboard&lt;/strong&gt;&lt;/a&gt;,  &lt;a href="https://themeselection.com/item/category/ui-kits/" rel="noopener noreferrer"&gt;&lt;strong&gt;UI Kits&lt;/strong&gt;&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;If you are looking for  &lt;a href="https://themeselection.com/item/category/free-admin-templates/" rel="noopener noreferrer"&gt;&lt;strong&gt;free admin templates&lt;/strong&gt;&lt;/a&gt;, UI kits and themes then do visit our site…!!&lt;/p&gt;

</description>
      <category>animation</category>
      <category>ui</category>
      <category>webdev</category>
      <category>design</category>
    </item>
    <item>
      <title>FlyonUI - An Open Source Tailwind CSS Component Library is Live 🚀</title>
      <dc:creator>ThemeSelection</dc:creator>
      <pubDate>Tue, 01 Oct 2024 13:53:08 +0000</pubDate>
      <link>https://forem.com/themeselection/flyonui-an-open-source-tailwind-css-component-library-is-live-32j7</link>
      <guid>https://forem.com/themeselection/flyonui-an-open-source-tailwind-css-component-library-is-live-32j7</guid>
      <description>&lt;p&gt;Hey Devs! 👋&lt;/p&gt;

&lt;p&gt;We’re super excited to announce the launch of FlyonUI—a fully free and &lt;strong&gt;open-source &lt;a href="https://flyonui.com/" rel="noopener noreferrer"&gt;Tailwind CSS Components library&lt;/a&gt;&lt;/strong&gt; that we've been hard at work developing.&lt;/p&gt;

&lt;p&gt;This library brings together the best of Tailwind CSS with semantic class names and powerful headless JS plugins for a seamless development experience. &lt;/p&gt;

&lt;p&gt;And guess what? It's available on &lt;a href="https://github.com/themeselection/flyonui" rel="noopener noreferrer"&gt;&lt;strong&gt;GitHub&lt;/strong&gt;&lt;/a&gt; for the community to use, contribute, and improve.&lt;/p&gt;

&lt;h3&gt;
  
  
  A Little Backstory 💪
&lt;/h3&gt;

&lt;blockquote&gt;
&lt;p&gt;Our team has poured time and passion into building FlyonUI, and we're excited to offer it for free!&lt;/p&gt;

&lt;p&gt;We’d love for you to try it out and share your feedback via &lt;strong&gt;&lt;a href="https://github.com/themeselection/flyonui/issues" rel="noopener noreferrer"&gt;GitHub issues&lt;/a&gt;&lt;/strong&gt; or in the comments. Your input will help us make FlyonUI even better for everyone.&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  Table of Contents
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Table of Contents&lt;/li&gt;
&lt;li&gt;Overview&lt;/li&gt;
&lt;li&gt;Why should I use FlyonUI?&lt;/li&gt;
&lt;li&gt;Features&lt;/li&gt;
&lt;li&gt;Documentation&lt;/li&gt;
&lt;li&gt;
Getting Started

&lt;ul&gt;
&lt;li&gt;Installation via NPM&lt;/li&gt;
&lt;li&gt;RTL (Right-to-Left) Language Support&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;

Available Components

&lt;ul&gt;
&lt;li&gt;Component Examples&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;Community&lt;/li&gt;

&lt;li&gt;Credits&lt;/li&gt;

&lt;li&gt;License&lt;/li&gt;

&lt;/ul&gt;




&lt;h2&gt;
  
  
  Overview
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://flyonui.com/" rel="noopener noreferrer"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fq9198iim4blogsj8m8mm.png" alt="FlyonUI Banner"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;FlyonUI is designed to combine the best of both worlds: the aesthetic appeal of semantic classes and the powerful functionality of JS plugins.&lt;/p&gt;

&lt;p&gt;Under the hood, it uses the strengths of:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://tailwindcss.com/" rel="noopener noreferrer"&gt;Tailwind CSS&lt;/a&gt; A utility-first CSS framework that helps you build beautiful websites with ease.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://daisyui.com/" rel="noopener noreferrer"&gt;DaisyUI&lt;/a&gt; adds component sematic class names to Tailwind CSS so you can make beautiful websites faster, easier and Maintainable.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://preline.co/plugins.html" rel="noopener noreferrer"&gt;Preline&lt;/a&gt; JavaScript headless &amp;amp; fully unstyled Tailwind plugins for accessible, responsive UI. Enhance experiences with animations, transitions, and more.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Why should I use FlyonUI?
&lt;/h2&gt;

&lt;p&gt;Using Tailwind CSS alone may lead to cluttered HTML with numerous utility classes, which can be a nightmare to maintain.&lt;/p&gt;

&lt;p&gt;Apart from that Tailwind CSS or DaisyUI doesn’t provide any interactive headless JavaScript components like accordion, overlay, dropdowns, etc…&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;This is where FlyonUI shines.✨&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;FlyonUI brings together the beauty of semantic classes and the interactive headless JavaScript plugins, offering you a powerful toolkit to build stunning, interactive user interfaces with ease.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Beautiful and Semantic Styling:&lt;/strong&gt; Utilize comprehensive CSS components with semantic class names for a clean and readable codebase.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Interactive and Dynamic Features:&lt;/strong&gt; Incorporate Headless JavaScript plugins for ex: Accordion, Dropdown, Overlay etc… to add interactivity and dynamic behavior to your UI components.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Efficiency and Productivity:&lt;/strong&gt; Enjoy a faster and more efficient development process by combining the strengths of semantic classes and JS plugins.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Maintainable and Scalable:&lt;/strong&gt; Keep your projects maintainable and scalable with a consistent coding approach and powerful JS plugins.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Features
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;800+ Free Components &amp;amp; Examples&lt;/strong&gt;: Hundreds of component examples for all your WebApp needs that meet accessibility criteria.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Universal Framework Compatibility&lt;/strong&gt;: Fully compatible wherever Tailwind CSS is in action, from React to Vue and beyond.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Unlimited Themes&lt;/strong&gt;: Customize your app’s look and feel with FlyonUI’s theming capabilities. Refer to the theme section for more details.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Unstyled &amp;amp; Accessible Plugins&lt;/strong&gt;: Seamlessly add unstyled, accessible plugins for functionality without sacrificing design.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Responsive &amp;amp; RTL support&lt;/strong&gt; : Built with responsiveness in mind, ensuring your app looks great on all devices with RTL language support.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Free Forever:&lt;/strong&gt; Completely free forever, open-source, and built for the community.&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Documentation
&lt;/h2&gt;

&lt;p&gt;For comprehensive documentation, please visit &lt;a href="https://flyonui.com/" rel="noopener noreferrer"&gt;flyonui.com&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Getting Started
&lt;/h2&gt;

&lt;p&gt;FlyonUI can be easily integrated into any existing Tailwind CSS project.&lt;/p&gt;

&lt;h3&gt;
  
  
  Installation via NPM
&lt;/h3&gt;

&lt;p&gt;To use FlyonUI, ensure that you have &lt;a href="https://nodejs.org/en/" rel="noopener noreferrer"&gt;Node.js&lt;/a&gt; and &lt;a href="https://tailwindcss.com/" rel="noopener noreferrer"&gt;Tailwind CSS&lt;/a&gt; installed.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Install FlyonUI as a dependency:
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;   npm &lt;span class="nb"&gt;install &lt;/span&gt;flyonui
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ol&gt;
&lt;li&gt;Include FlyonUI as a plugin in your &lt;code&gt;tailwind.config.js&lt;/code&gt; file:
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;   &lt;span class="nx"&gt;module&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;exports&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
     &lt;span class="na"&gt;content&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;./node_modules/flyonui/dist/js/*.js&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;],&lt;/span&gt; &lt;span class="c1"&gt;// Require only if you want to use FlyonUI JS component&lt;/span&gt;

     &lt;span class="na"&gt;plugins&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;
       &lt;span class="nf"&gt;require&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;flyonui&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;),&lt;/span&gt;
       &lt;span class="nf"&gt;require&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;flyonui/plugin&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="c1"&gt;// Require only if you want to use FlyonUI JS component&lt;/span&gt;
     &lt;span class="p"&gt;]&lt;/span&gt;
   &lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This ensures that FlyonUI's styling is applied correctly throughout your project.&lt;/p&gt;

&lt;p&gt;If you want to include specific js component:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;   &lt;span class="nx"&gt;module&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;exports&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
     &lt;span class="na"&gt;content&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;./node_modules/flyonui/dist/js/accordion.js&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;
   &lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ol&gt;
&lt;li&gt;Include FlyonUI JavaScript in HTML
To enable interactive elements, include FlyonUI's JavaScript in your HTML file, right before the closing &lt;code&gt;&amp;lt;/body&amp;gt;&lt;/code&gt; tag:
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;   &lt;span class="nt"&gt;&amp;lt;script &lt;/span&gt;&lt;span class="na"&gt;src=&lt;/span&gt;&lt;span class="s"&gt;"../node_modules/flyonui/flyonui.js"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&amp;lt;/script&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;For a single component, use the specific path:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;   &lt;span class="nt"&gt;&amp;lt;script &lt;/span&gt;&lt;span class="na"&gt;src=&lt;/span&gt;&lt;span class="s"&gt;"../node_modules/flyonui/dist/js/accordion.js"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&amp;lt;/script&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This script ensures that all FlyonUI interactivity is correctly applied to your elements.&lt;/p&gt;

&lt;h3&gt;
  
  
  RTL (Right-to-Left) Language Support
&lt;/h3&gt;

&lt;p&gt;FlyonUI components offer native RTL support. Simply add the &lt;code&gt;dir="rtl"&lt;/code&gt; attribute to your HTML element to enable this feature.&lt;/p&gt;

&lt;h2&gt;
  
  
  Available Components
&lt;/h2&gt;

&lt;p&gt;FlyonUI provides a robust library of UI components built with Tailwind CSS utility classes, enabling fast and efficient web development. Our library includes 78+ components, from basic elements like buttons and cards to more complex third-party integrations.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://flyonui.com/docs/components/accordion/" rel="noopener noreferrer"&gt;Explore all components&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Component Examples
&lt;/h3&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
  &lt;tr&gt;
    &lt;td&gt;Accordion&lt;/td&gt;
    &lt;td&gt;Alert&lt;/td&gt;
    &lt;td&gt;Apex Charts&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;
        &lt;a href="https://flyonui.com/docs/components/accordion/" rel="noopener noreferrer"&gt;
            &lt;img alt="Tailwind CSS Accordion" src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.flyonui.com%2Ffy-assets%2Fcomponents-svg%2Fcomponents%2Faccordion.svg"&gt;
        &lt;/a&gt;
    &lt;/td&gt;
    &lt;td&gt;
        &lt;a href="https://flyonui.com/docs/components/alert/" rel="noopener noreferrer"&gt;
            &lt;img alt="Tailwind CSS Alert" src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.flyonui.com%2Ffy-assets%2Fcomponents-svg%2Fcomponents%2Falert.svg"&gt;
        &lt;/a&gt;
    &lt;/td&gt;
    &lt;td&gt;
        &lt;a href="https://flyonui.com/docs/third-party-plugins/apex-charts/" rel="noopener noreferrer"&gt;
            &lt;img alt="Tailwind CSS Apex Charts" src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.flyonui.com%2Ffy-assets%2Fcomponents-svg%2Fthird-party-plugins%2Fapex-charts.svg"&gt;
        &lt;/a&gt;
    &lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;Button&lt;/td&gt;
    &lt;td&gt;Card&lt;/td&gt;
    &lt;td&gt;Checkbox&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;
        &lt;a href="https://flyonui.com/docs/components/button/" rel="noopener noreferrer"&gt;
            &lt;img alt="Tailwind CSS Button" src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.flyonui.com%2Ffy-assets%2Fcomponents-svg%2Fcomponents%2Fbutton.svg"&gt;
        &lt;/a&gt;
    &lt;/td&gt;
    &lt;td&gt;
        &lt;a href="https://flyonui.com/docs/components/card/" rel="noopener noreferrer"&gt;
            &lt;img alt="Tailwind CSS Card" src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.flyonui.com%2Ffy-assets%2Fcomponents-svg%2Fcomponents%2Fcard.svg"&gt;
        &lt;/a&gt;
    &lt;/td&gt;
    &lt;td&gt;
        &lt;a href="https://flyonui.com/docs/components/checkbox/" rel="noopener noreferrer"&gt;
            &lt;img alt="Tailwind CSS Checkbox" src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.flyonui.com%2Ffy-assets%2Fcomponents-svg%2Fform-elements%2Fcheckbox.svg"&gt;
        &lt;/a&gt;
    &lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
     &lt;td&gt;Dropdown&lt;/td&gt;
    &lt;td&gt;Input&lt;/td&gt;
    &lt;td&gt;Modal&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;
        &lt;a href="https://flyonui.com/docs/overlays/dropdown/" rel="noopener noreferrer"&gt;
            &lt;img alt="Tailwind CSS Dropdown" src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.flyonui.com%2Ffy-assets%2Fcomponents-svg%2Foverlays%2Fdropdown.svg"&gt;
        &lt;/a&gt;
    &lt;/td&gt;
    &lt;td&gt;
        &lt;a href="https://flyonui.com/docs/forms/input/" rel="noopener noreferrer"&gt;
            &lt;img alt="Tailwind CSS Input" src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.flyonui.com%2Ffy-assets%2Fcomponents-svg%2Fform-elements%2Finput.svg"&gt;
        &lt;/a&gt;
    &lt;/td&gt;
    &lt;td&gt;
        &lt;a href="https://flyonui.com/docs/overlays/modal/" rel="noopener noreferrer"&gt;
            &lt;img alt="Tailwind CSS Modal" src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.flyonui.com%2Ffy-assets%2Fcomponents-svg%2Foverlays%2Fmodal.svg"&gt;
        &lt;/a&gt;
    &lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;Navbar&lt;/td&gt;
    &lt;td&gt;Tabs &amp;amp; Pills&lt;/td&gt;
    &lt;td&gt;Tooltip&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;
        &lt;a href="https://flyonui.com/docs/navigations/navbar/" rel="noopener noreferrer"&gt;
            &lt;img alt="Tailwind CSS Navbar" src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.flyonui.com%2Ffy-assets%2Fcomponents-svg%2Fnavigations%2Fnavbar.svg"&gt;
        &lt;/a&gt;
    &lt;/td&gt;
    &lt;td&gt;
        &lt;a href="https://flyonui.com/docs/navigations/tabs-pills/" rel="noopener noreferrer"&gt;
            &lt;img alt="Tailwind CSS Tabs &amp;amp; Pills" src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.flyonui.com%2Ffy-assets%2Fcomponents-svg%2Fnavigations%2Ftabs-pills.svg"&gt;
        &lt;/a&gt;
    &lt;/td&gt;
    &lt;td&gt;
        &lt;a href="https://flyonui.com/docs/overlays/tooltip/" rel="noopener noreferrer"&gt;
            &lt;img alt="Tailwind CSS Tooltip" src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.flyonui.com%2Ffy-assets%2Fcomponents-svg%2Foverlays%2Ftooltip.svg"&gt;
        &lt;/a&gt;
    &lt;/td&gt;
  &lt;/tr&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;&lt;a href="https://flyonui.com/docs/components/accordion/" rel="noopener noreferrer"&gt;Explore all components&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Community
&lt;/h2&gt;

&lt;p&gt;Join the FlyonUI community to discuss the library, ask questions, and share your experiences:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;📢 &lt;a href="https://x.com/flyonui" rel="noopener noreferrer"&gt;Follow us on Twitter&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;⌨️ &lt;a href="https://github.com/themeselection/flyonui/discussions" rel="noopener noreferrer"&gt;Discuss on GitHub&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Credits
&lt;/h2&gt;

&lt;p&gt;We are grateful for the contributions of the open-source community, particularly:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://tailwindcss.com/" rel="noopener noreferrer"&gt;TailwindCSS&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://daisyui.com/" rel="noopener noreferrer"&gt;daisyUI&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://preline.co/" rel="noopener noreferrer"&gt;Preline UI&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;These projects form the backbone of FalyonUI, allowing us to build a powerful and user-friendly UI kit.&lt;/p&gt;

&lt;h2&gt;
  
  
  License
&lt;/h2&gt;

&lt;p&gt;FlyonUI is open-source software licensed under the MIT License.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;📝 &lt;a href="https://github.com/themeselection/flyonui/blob/main/LICENSE" rel="noopener noreferrer"&gt;Read the License&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;📀 &lt;a href="https://github.com/themeselection/flyonui/blob/main/THIRD_PARTY_LICENSES" rel="noopener noreferrer"&gt;View THIRD_PARTY_LICENSES&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>tailwindcss</category>
      <category>webdev</category>
      <category>opensource</category>
      <category>webcomponents</category>
    </item>
    <item>
      <title>The Ultimate JavaScript Cheatsheet Collection 🚀</title>
      <dc:creator>Ajay Kalal</dc:creator>
      <pubDate>Tue, 13 Feb 2024 13:57:58 +0000</pubDate>
      <link>https://forem.com/themeselection/the-ultimate-javascript-cheatsheet-collection-2k1l</link>
      <guid>https://forem.com/themeselection/the-ultimate-javascript-cheatsheet-collection-2k1l</guid>
      <description>&lt;p&gt;Looking to elevate your JavaScript coding journey? and in search of a quick reference? Look no further! Welcome to the world of JavaScript cheatsheets, your go-to companions for smoother coding experiences.&lt;/p&gt;

&lt;p&gt;In this curated compilation, we've handpicked the most essential cheatsheets for JavaScript and its popular frameworks like React and Vue.js. Whether you're a beginner or a seasoned developer these cheatsheets will simplify your coding experience. &lt;/p&gt;

&lt;p&gt;So, let's not waste any time and jump straight into our collection of JavaScript cheatsheets.&lt;/p&gt;

&lt;h2&gt;
  
  
  JavaScript Cheatsheet
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3w9x9qngppkr5bslb0bq.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3w9x9qngppkr5bslb0bq.png" alt="Vanilla JavaScript Cheatsheets" width="800" height="457"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;We will categorize cheatsheets based on different technologies and also provide you with a plain JavaScript cheatsheet.&lt;/p&gt;

&lt;h3&gt;
  
  
  Vanilla JavaScript Cheatsheets
&lt;/h3&gt;

&lt;p&gt;A Vanilla JavaScript Cheat Sheet is a quick reference guide for programmers that includes the most commonly used JavaScript (JS) code snippets, functions, methods, and concepts without relying on any libraries or frameworks.&lt;/p&gt;

&lt;h4&gt;
  
  
  &lt;a href="https://mbeaudru.github.io/modern-js-cheatsheet/" rel="noopener noreferrer"&gt;Modern JavaScript Cheatsheet&lt;/a&gt;
&lt;/h4&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Futddhdkh2jqsqnuux9mz.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Futddhdkh2jqsqnuux9mz.png" alt="Modern JavaScript Cheatsheet" width="800" height="251"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;A comprehensive guide aimed at developers familiar with JavaScript basics but seeking to understand more about modern syntax and structures frequently encountered in contemporary projects. &lt;/p&gt;

&lt;p&gt;Furthermore, it covers crucial concepts introduced in the ES2015 update (also known as ES6), offering explanations on variable declarations, arrow functions, promises, classes, and much more.&lt;/p&gt;




&lt;p&gt;Checkout the latest &lt;a href="https://flyonui.com/" rel="noopener noreferrer"&gt;free Tailwind CSS Components Library&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://flyonui.com/" rel="noopener noreferrer"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F8ma6b221vdfy7k4eefm2.png" alt="Flyonui Tailwind CSS Components Library" width="800" height="185"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;h4&gt;
  
  
  &lt;a href="https://github.com/iLoveCodingOrg/javascript-cheatsheet" rel="noopener noreferrer"&gt;iLoveCodingOrg JS Cheatsheet&lt;/a&gt;
&lt;/h4&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F5033yxt3mtdul1ulmxk1.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F5033yxt3mtdul1ulmxk1.png" alt="iLoveCodingOrg JS Cheatsheet" width="800" height="583"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This GitHub repository by iLoveCodingOrg provides a JavaScript Cheatsheet focusing on foundational concepts, syntax, terminologies, and constructs essential for learning JavaScript. It also includes a bonus one-page DOM API cheatsheet. &lt;/p&gt;

&lt;p&gt;The cheatsheet is available for download as a 13-page PDF, with each page covering different aspects of JavaScript. Furthermore, This resource is designed to help both beginners and intermediate developers grasp the fundamental aspects of JavaScript.&lt;/p&gt;

&lt;h4&gt;
  
  
  &lt;a href="https://github.com/wilfredinni/javascript-cheatsheet" rel="noopener noreferrer"&gt;JavaScript Cheatsheet by Wilfredinni&lt;/a&gt;
&lt;/h4&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fo8cxrhdyqfcxpcvbpisz.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fo8cxrhdyqfcxpcvbpisz.png" alt="JavaScript Cheatsheet by Wilfredinni" width="800" height="434"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The JavaScript Cheatsheet is designed as a comprehensive reference tool for both beginners and advanced developers. It covers a wide range of topics from the basics, control flow, functions, arrays, and array methods, to objects, sets, string manipulation, and formatting.&lt;/p&gt;

&lt;h4&gt;
  
  
  &lt;a href="https://cheatsheets.shecodes.io/javascript" rel="noopener noreferrer"&gt;SheCodes JavaScript Cheatsheet&lt;/a&gt;
&lt;/h4&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Frurb0595vnbu89i0q0rl.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Frurb0595vnbu89i0q0rl.png" alt="SheCodes JavaScript Cheatsheet" width="800" height="479"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;SheCodes is a community that teaches coding skills to busy women. Their wide range of cheatsheets includes JavaScript.&lt;/p&gt;

&lt;p&gt;The cheatsheet is designed to provide quick references and examples for JavaScript coding, such as syntax, functions, variables, and other key concepts essential for web development.&lt;/p&gt;

&lt;h4&gt;
  
  
  &lt;a href="https://overapi.com/javascript" rel="noopener noreferrer"&gt;JavaScript Cheatsheet by OverAPI&lt;/a&gt;
&lt;/h4&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fo48xy1w8i2tvooy5thdj.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fo48xy1w8i2tvooy5thdj.png" alt="OverAPI JavaScript Cheatsheet" width="800" height="496"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;An extensive collection of JavaScript syntax, methods, and properties. This cheatsheet includes detailed references for basic objects like Arrays, Booleans, and Math, as well as more complex elements like the DOM events, Node properties, RegExp, and core DOM methods. &lt;/p&gt;

&lt;p&gt;The site organizes information in a user-friendly manner, making it easy to find specific JavaScript functionalities and code snippets for developers at all skill levels.&lt;/p&gt;

&lt;h4&gt;
  
  
  &lt;a href="https://www.codewithharry.com/blogpost/javascript-cheatsheet/" rel="noopener noreferrer"&gt;JavaScript Cheatsheet by Codewith Harry&lt;/a&gt;
&lt;/h4&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F89xg8hakz0f607u8i0pp.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F89xg8hakz0f607u8i0pp.png" alt="JavaScript Cheatsheet by Codewith Harry" width="800" height="518"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;A comprehensive guide that helps developers with the basics of JavaScript syntax and concepts. It includes basic objects used in JavaScript like Iterative Statements (Loops), Conditional Statements, Arrays, Maths, Dates, Keyboard events, and many more.&lt;/p&gt;

&lt;h3&gt;
  
  
  Vuejs Cheatsheet
&lt;/h3&gt;

&lt;p&gt;VueJs is a progressive open-source Javascript framework for building single-page applications and user interfaces. These cheatsheets can help you better understand this modern framework. &lt;/p&gt;

&lt;p&gt;If you're working on Vue JS projects then it is recommended to use &lt;a href="https://themeselection.com/item/category/vuejs-admin-templates/" rel="noopener noreferrer"&gt;&lt;strong&gt;VueJS Admin Dashboard&lt;/strong&gt;&lt;/a&gt; template to build progressive web apps. &lt;/p&gt;

&lt;h4&gt;
  
  
  &lt;a href="https://vue-cheatsheet.themeselection.com/" rel="noopener noreferrer"&gt;Vue Cheatsheet by ThemeSelection&lt;/a&gt;
&lt;/h4&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fw2jygfodd9nwl01cfshp.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fw2jygfodd9nwl01cfshp.png" alt="Vue Cheatsheet by ThemeSelection" width="800" height="418"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;After receiving positive feedback on our &lt;a href="https://bootstrap-cheatsheet.themeselection.com/" rel="noopener noreferrer"&gt;Bootstrap CheeatSheet&lt;/a&gt; we've decided to add value to our Vue developers as well. Vue Cheatsheet is an interactive cheatsheet of Vue, Vue Router, and Pinia. Furthermore, this Vue Cheatsheet is designed to be a comprehensive resource for Vue developers, aiming to accelerate learning and skill improvement.&lt;/p&gt;

&lt;p&gt;This cheatsheet is positioned as the only Vue resource you may need, indicating its extensive coverage of the framework's features and best practices.&lt;/p&gt;

&lt;h4&gt;
  
  
  &lt;a href="https://devhints.io/vue" rel="noopener noreferrer"&gt;Vue Cheatsheet by Devhints&lt;/a&gt;
&lt;/h4&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fkljo1m1gmbzz11exxnbj.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fkljo1m1gmbzz11exxnbj.png" alt="Devhints Vue Cheatsheet" width="800" height="525"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The cheatsheet at devhints.io for Vue.js covers major key concepts like expressions, binding, directives, events, list rendering, component anatomy, lifecycle hooks, custom events, single file components, and slots. &lt;/p&gt;

&lt;p&gt;It includes code snippets for expressions, binding syntaxes, conditionals, list handling, component structures, and many more. &lt;a href="//devhints.io"&gt;Devhints&lt;/a&gt; offers wide range of cheatsheets that are worth checking out. &lt;/p&gt;

&lt;h4&gt;
  
  
  &lt;a href="https://learnvue.co/vue-3-essentials-cheatsheet" rel="noopener noreferrer"&gt;Vue 3 Cheatsheet by Learnvue&lt;/a&gt;
&lt;/h4&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F6n1qzf8s3cdmpzgrfenu.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F6n1qzf8s3cdmpzgrfenu.png" alt="Vue 3 Cheatsheet by Learnvue" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This open-source vue cheatsheet is designed to help developers with quick references on various Vue 3 topics. It covers creating an app with Vite, template syntax, directives, conditional rendering, event handling, list rendering, binding data, slots, dynamic components, the Composition API, and many more. &lt;/p&gt;

&lt;p&gt;In short, it covers all the essential Vue 3 commands and features.&lt;/p&gt;




&lt;p&gt;As a vue developer, using a Vue-based &lt;a href="https://themeselection.com/item/category/nuxt-admin-template/" rel="noopener noreferrer"&gt;NuxtJS Admin Template&lt;/a&gt; helps you to create SSR-friendly web apps. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://themeselection.com/item/materio-free-vuetify-nuxtjs-admin-template/" rel="noopener noreferrer"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fnn96y2nzgefjzqtf841v.png" alt="Materio Free Vuetify NuxtJS Admin Template free to download" width="800" height="185"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;h4&gt;
  
  
  &lt;a href="https://www.vuemastery.com/vue-cheat-sheet/" rel="noopener noreferrer"&gt;Vue Cheatsheet by Vue Mastery&lt;/a&gt;
&lt;/h4&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fc6516gfdn7iq6nae7p98.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fc6516gfdn7iq6nae7p98.png" alt="Vue Cheatsheet by Vue Mastery" width="800" height="420"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Vue Mastery offers a comprehensive Vue Cheat Sheet designed to save developers time and energy. The website provides downloadable cheat sheets covering Vue Essentials, Nuxt, Vue 3 Migration Guide, Vue 3 Composition API, Vue Router, and Pinia. These resources are aimed at facilitating the learning process and ensuring developers have quick access to important concepts and best practices within the Vue.js ecosystem.&lt;/p&gt;

&lt;h4&gt;
  
  
  &lt;a href="https://dev.to/adnanbabakan/series/3893"&gt;Vue Cheatsheet Series by Adnan Babakan&lt;/a&gt;
&lt;/h4&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fq6p3szt5yameckqy7auw.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fq6p3szt5yameckqy7auw.png" alt="Vue Cheatsheet Series by Adnan Babakan" width="800" height="336"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;An ultimate series of posts dedicated to Vue developers covering the basic concepts of Vue.js in this Cheatsheet. The series consists of 6 posts that range from beginner to advanced levels, making it suitable for developers of all skill levels.&lt;/p&gt;

&lt;h3&gt;
  
  
  React Cheatsheet
&lt;/h3&gt;

&lt;p&gt;React is an open-source library developed by Facebook which is specifically designed to create advanced and high-speed user interfaces.&lt;/p&gt;

&lt;h4&gt;
  
  
  &lt;a href="https://github.com/typescript-cheatsheets/react" rel="noopener noreferrer"&gt;React Typescript Cheatsheet&lt;/a&gt;
&lt;/h4&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F70xdb5vkjcwj5tfr7ly3.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F70xdb5vkjcwj5tfr7ly3.png" alt="React Typescript Cheatsheet" width="800" height="440"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This React Typescript cheatsheet is intended for experienced developers who are new to TypeScript. &lt;/p&gt;

&lt;p&gt;It includes four cheatsheets: a basic one focused on helping React developers start using TypeScript in React apps, an advanced one that demonstrates and explains advanced usage of generic types, a migration cheatsheet for migrating large codebases, and the HOC cheatsheet that teaches people how to write HOCs with examples.&lt;/p&gt;

&lt;p&gt;If you're working on React TypeScript projects then check out these best &lt;a href="https://themeselection.com/typescript-react-admin-template/" rel="noopener noreferrer"&gt;React TypeScript Admin Template&lt;/a&gt;. &lt;/p&gt;

&lt;h4&gt;
  
  
  &lt;a href="https://www.geeksforgeeks.org/react-cheat-sheet/" rel="noopener noreferrer"&gt;React Cheatsheet by Geeks for Geeks&lt;/a&gt;
&lt;/h4&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjod2a60dhxomf4pc5508.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjod2a60dhxomf4pc5508.png" alt="Geeks for Geeks React Cheatsheet" width="800" height="400"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;React Cheatsheet by Geeks for Geeks provides you with a simple quick reference to commonly used React methods. It provides you with all the important components and methods in the Single page. &lt;/p&gt;

&lt;p&gt;For instance, it has React elements, conditional rendering, React Lists, DOM events, PropTypes, Hooks, and many more. &lt;/p&gt;




&lt;p&gt;When working on a React project, you can accelerate your development process and build responsive web apps by using &lt;a href="https://themeselection.com/item/category/next-js-admin-template/" rel="noopener noreferrer"&gt;NextJS admin templates&lt;/a&gt; built with React.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://themeselection.com/item/materio-mui-nextjs-admin-template/" rel="noopener noreferrer"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fff51cyhff9f59sp7ufvt.png" alt="Materio NextJS Admin Template" width="800" height="185"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;h4&gt;
  
  
  &lt;a href="https://cheatsheets.shecodes.io/react" rel="noopener noreferrer"&gt;SheCodes React Cheatsheet&lt;/a&gt;
&lt;/h4&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fkhtb32dmrost68yyraiz.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fkhtb32dmrost68yyraiz.png" alt="SheCodes React Cheatsheet" width="800" height="479"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;SheCodes React Cheatsheet is one of the best comprehensive React Cheatsheets designed for beginners. It is packed with multiple snippets that cover categories like JSX, components, properties, events, states, loop, ajax, forms, and many more. &lt;/p&gt;

&lt;h4&gt;
  
  
  &lt;a href="https://devhints.io/react" rel="noopener noreferrer"&gt;DevHints' React Cheatsheet&lt;/a&gt;
&lt;/h4&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fng6nxfaaeeod2rp80bj3.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fng6nxfaaeeod2rp80bj3.png" alt="DevHints' React Cheatsheet" width="800" height="418"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;React.js cheatsheet on Devhints.io offers a comprehensive guide on various React concepts and features. It covers components, props, states, lifecycle methods, hooks, functional components, pure components, and more &lt;/p&gt;

&lt;h4&gt;
  
  
  &lt;a href="https://codingcheats.io/react/" rel="noopener noreferrer"&gt;Codingcheats.io's React Cheatsheet&lt;/a&gt;
&lt;/h4&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fplpqljv5qw5aad98jk36.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fplpqljv5qw5aad98jk36.png" alt="Codingcheats.io's React Cheatsheet" width="800" height="392"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The Ultimate React.js Cheat Sheet" on Coding Cheats offers a concise overview of React.js concepts, including components, props, hooks, event handling, and more, with straightforward examples for each concept. &lt;/p&gt;

&lt;p&gt;Furthermore, this cheat sheet is designed to help developers quickly reference key React features and syntax.&lt;/p&gt;

&lt;h3&gt;
  
  
  NodeJS
&lt;/h3&gt;

&lt;p&gt;Node.js: Empower Your Development with Essential Cheatsheets. Simplify and Enhance Your Node.js Experience with these cheatsheets. &lt;/p&gt;

&lt;h4&gt;
  
  
  &lt;a href="https://overapi.com/nodejs" rel="noopener noreferrer"&gt;OverAPI NodeJS Cheatsheet&lt;/a&gt;
&lt;/h4&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fyp7s3g9rv9quz4n83suh.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fyp7s3g9rv9quz4n83suh.png" alt="OverAPI NodeJS Cheatsheet" width="800" height="471"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;NodeJS Cheat Sheet on OverAPI.com offers a comprehensive overview of NodeJS, including basic global objects like &lt;code&gt;global&lt;/code&gt;, &lt;code&gt;process&lt;/code&gt;, &lt;code&gt;console&lt;/code&gt;, and others, along with modules, file system operations, streams, events, and more. It serves as a quick reference for NodeJS syntax and functions, ideal for developers looking for a quick lookup while coding.&lt;/p&gt;

&lt;h4&gt;
  
  
  &lt;a href="https://zerotomastery.io/cheatsheets/node-js-cheat-sheet/" rel="noopener noreferrer"&gt;Node JS Cheat Sheet by Zero to Mastery&lt;/a&gt;
&lt;/h4&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fttoh0srizkgibf2o7kps.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fttoh0srizkgibf2o7kps.png" alt="Node JS Cheat Sheet by Zero to Mastery" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Learn and remember key functions and concepts of Node JS with this handy quick reference guide (+ PDF) to the fundamentals of Node.js. It covers important concepts and functions like Node.js Module System, packages, Event Emitter, backend concepts, and many more. &lt;/p&gt;

&lt;h4&gt;
  
  
  &lt;a href="https://www.javacodegeeks.com/node-js-cheatsheet.html" rel="noopener noreferrer"&gt;Node.js Cheatsheet By Java Code Geeks&lt;/a&gt;
&lt;/h4&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F6n862wmxhl4toi2gu737.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F6n862wmxhl4toi2gu737.png" alt="Java Code Geeks" width="800" height="566"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;It's a comprehensive guide offering insights into Node.js to beginners. The cheatsheet is detailed, discussing the event-driven, non-blocking I/O model of Node.js, and provides practical information for developers at all levels&lt;/p&gt;

&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;There you go, these are some of the best JavaScript Cheatsheets out there that you should consider using to steep down your learning curve. While working as a developer it is very important to master top frameworks by building foundational knowledge. &lt;/p&gt;

&lt;p&gt;These resources mentioned above will be helpful to elevate your journey and assist in building modern web apps.&lt;/p&gt;

&lt;p&gt;If you have any additional cheat sheets or categories of cheat sheets to suggest, please let us know in the comments. If you found this post helpful, please share it with your community.&lt;/p&gt;

&lt;p&gt;Happy Coding, Cheers 🥂&lt;/p&gt;




&lt;h2&gt;
  
  
  About us
&lt;/h2&gt;

&lt;p&gt;We, at  &lt;a href="https://themeselection.com/" rel="noopener noreferrer"&gt;ThemeSelection&lt;/a&gt;, provide selected high-quality, modern design, professional and easy-to-use premium, and free  &lt;a href="https://themeselection.com/item/category/vuejs-admin-templates/" rel="noopener noreferrer"&gt;VueJS Admin Templates&lt;/a&gt;,  &lt;a href="https://themeselection.com/item/category/asp-net-dashboard/" rel="noopener noreferrer"&gt;Asp.NET Admin Template&lt;/a&gt;,  &lt;a href="https://themeselection.com/item/category/next-js-admin-template/" rel="noopener noreferrer"&gt;NextJS Admin Template&lt;/a&gt;,  &lt;a href="https://themeselection.com/item/category/laravel-admin-templates/" rel="noopener noreferrer"&gt;Laravel Admin Templates&lt;/a&gt;, &amp;amp;  &lt;a href="https://themeselection.com/products/category/free-ui-kits/" rel="noopener noreferrer"&gt;Free UI Kits&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>beginners</category>
      <category>cheatsheet</category>
      <category>code</category>
    </item>
    <item>
      <title>Vue Cheatsheet: Simplifying Vue.js Development 🚀</title>
      <dc:creator>ThemeSelection</dc:creator>
      <pubDate>Mon, 05 Feb 2024 13:13:42 +0000</pubDate>
      <link>https://forem.com/themeselection/vue-cheatsheet-simplifying-vuejs-development-1jl0</link>
      <guid>https://forem.com/themeselection/vue-cheatsheet-simplifying-vuejs-development-1jl0</guid>
      <description>&lt;h2&gt;
  
  
  Vue CheatSheet By ThemeSelection! 🚀
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://vue-cheatsheet.themeselection.com/"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fpxqbgbf47pkj4xuwla09.png" alt="Vue Cheatsheet" width="800" height="464"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  What is Vue CheatSheet?
&lt;/h3&gt;

&lt;p&gt;It is an interactive cheatsheet of &lt;strong&gt;Vue&lt;/strong&gt;, &lt;strong&gt;Vue Router&lt;/strong&gt; and, &lt;strong&gt;Pinia&lt;/strong&gt;. 🎊 The only &lt;strong&gt;&lt;a href="https://vue-cheatsheet.themeselection.com/"&gt;Vue CheatSheet&lt;/a&gt;&lt;/strong&gt; you will ever need whether you are using Vue, Vue Router &amp;amp; Pinia in your Vue project or starting a new Vue project.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://vue-cheatsheet.themeselection.com"&gt;Vue CheatSheet&lt;/a&gt; is aimed towards a large community of Vue users who find it difficult to search for Vue, Vue Router and Pinia.&lt;/p&gt;

&lt;h3&gt;
  
  
  Key Features 🛠
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Comprehensive Coverage of Vue, Vue router, Pinia&lt;/li&gt;
&lt;li&gt;Interactive search&lt;/li&gt;
&lt;li&gt;Concise code snippet&lt;/li&gt;
&lt;li&gt;Easily copy code snippet and use it&lt;/li&gt;
&lt;li&gt;Open source&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Contents 🤩
&lt;/h3&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Vue CheatSheet&lt;/th&gt;
&lt;th&gt;URL&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Vue&lt;/td&gt;
&lt;td&gt;&lt;a href="https://vue-cheatsheet.themeselection.com/vue/basic.html"&gt;https://vue-cheatsheet.themeselection.com/vue/basic.html&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Vue Router&lt;/td&gt;
&lt;td&gt;&lt;a href="https://vue-cheatsheet.themeselection.com/vue-router/basic.html"&gt;https://vue-cheatsheet.themeselection.com/vue-router/basic.html&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Pinia&lt;/td&gt;
&lt;td&gt;&lt;a href="https://vue-cheatsheet.themeselection.com/pinia/basic.html"&gt;https://vue-cheatsheet.themeselection.com/pinia/basic.html&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;




&lt;h3&gt;
  
  
  Contributing 📝
&lt;/h3&gt;

&lt;p&gt;If you find something which doesn't make sense, or something doesn't seem right, please make a pull request and please add valid and well-reasoned explanations about your changes or comments.&lt;/p&gt;

&lt;p&gt;Before adding a pull request, please see the &lt;strong&gt;&lt;a href="https://vue-cheatsheet.themeselection.com/contributing.html"&gt;contributing guidelines&lt;/a&gt;&lt;/strong&gt;. You should also remember about this:&lt;/p&gt;

&lt;p&gt;All &lt;strong&gt;suggestions/PR&lt;/strong&gt; are welcome!&lt;/p&gt;




&lt;h3&gt;
  
  
  Credits 🤘
&lt;/h3&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Name&lt;/th&gt;
&lt;th&gt;URL&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Vue&lt;/td&gt;
&lt;td&gt;&lt;a href="https://vuejs.org"&gt;https://vuejs.org&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Vue Router&lt;/td&gt;
&lt;td&gt;&lt;a href="https://router.vuejs.org"&gt;https://router.vuejs.org&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Pinia&lt;/td&gt;
&lt;td&gt;&lt;a href="https://pinia.vuejs.org"&gt;https://pinia.vuejs.org&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Vitepre&lt;/td&gt;
&lt;td&gt;&lt;a href="https://vitepress.dev"&gt;https://vitepress.dev&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Python Cheatsheet&lt;/td&gt;
&lt;td&gt;&lt;a href="https://www.pythoncheatsheet.org"&gt;https://www.pythoncheatsheet.org&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;




&lt;h3&gt;
  
  
  Copyright and license ©
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://vue-cheatsheet.themeselection.com"&gt;Vue CheatSheet&lt;/a&gt; is an open source project by &lt;a href="https://themeselection.com"&gt;ThemeSelection&lt;/a&gt; that is licensed under &lt;a href="http://opensource.org/licenses/MIT"&gt;MIT&lt;/a&gt;. ThemeSelection reserves the right to change the license of future releases.&lt;/p&gt;

&lt;h3&gt;
  
  
  Note 📒
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;We request you keep ThemeSelection credit link if you share this tool or add it to a blog post.&lt;/strong&gt;&lt;/p&gt;




&lt;h3&gt;
  
  
  Looking For Premium Admin Templates ??
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://themeselection.com/"&gt;ThemeSelection&lt;/a&gt;&lt;/strong&gt; provides Selected high quality, modern design, professional and easy-to-use Free and Premium &lt;a href="https://themeselection.com/item/category/bootstrap-admin-template/"&gt;Bootstrap Admin Templates&lt;/a&gt;, &lt;a href="https://themeselection.com/item/category/vuejs-admin-templates/"&gt;VueJS Admin Templates&lt;/a&gt;, &lt;a href="https://themeselection.com/item/category/nuxt-admin-template/"&gt;Nuxt Admmin Dashboard&lt;/a&gt;, &lt;a href="https://themeselection.com/item/category/laravel-admin-templates/"&gt;Laravel Admin Templates&lt;/a&gt; HTML Themes and &lt;a href="https://themeselection.com/item/category/free-ui-kits/"&gt;Free UI Kits&lt;/a&gt; to create your applications faster!.&lt;/p&gt;

&lt;p&gt;If you want to &lt;a href="https://themeselection.com/item/category/free-admin-templates/m"&gt;Download Free Admin Templates&lt;/a&gt; then do visit &lt;a href="https://themeselection.com/"&gt;ThemeSelection&lt;/a&gt;.&lt;/p&gt;

&lt;h3&gt;
  
  
  Useful Links 🔗
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://themeselection.com/products/"&gt;More products&lt;/a&gt; from ThemeSelection&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://themeselection.com/products/category/freebies/"&gt;Freebies&lt;/a&gt; from ThemeSelection&lt;/li&gt;
&lt;li&gt;&lt;a href="https://themeselection.com/blog/"&gt;Blog&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Social Media 😇
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Twitter : &lt;a href="https://twitter.com/Theme_Selection"&gt;https://twitter.com/Theme_Selection&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Facebook : &lt;a href="https://www.facebook.com/ThemeSelections/"&gt;https://www.facebook.com/ThemeSelections&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Pintrest : &lt;a href="https://www.pinterest.com/themeselection/"&gt;https://www.pinterest.com/themeselection/&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Instagram : &lt;a href="https://www.instagram.com/themeselection/"&gt;https://www.instagram.com/themeselection/&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>vue</category>
      <category>cheetsheet</category>
      <category>webdev</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Open Source Vuetify NuxtJS Admin Template - Materio</title>
      <dc:creator>ThemeSelection</dc:creator>
      <pubDate>Fri, 12 Jan 2024 12:45:22 +0000</pubDate>
      <link>https://forem.com/themeselection/open-source-vuetify-nuxtjs-admin-template-materio-50pk</link>
      <guid>https://forem.com/themeselection/open-source-vuetify-nuxtjs-admin-template-materio-50pk</guid>
      <description>&lt;p&gt;&lt;a href="https://themeselection.com/item/materio-free-vuetify-nuxtjs-admin-template/" rel="noopener noreferrer"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fsim4e7u88rv7umwki3os.png" alt="Materio Free Vuetify NuxtJS Adin Template"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://themeselection.com/item/materio-free-vuetify-nuxtjs-admin-template/" rel="noopener noreferrer"&gt;&lt;strong&gt;Materio – Free Vuetify NuxtJS 3 Admin Template&lt;/strong&gt;&lt;/a&gt; — is the latest developer-friendly 🤘🏻 &amp;amp; highly customizable✨ template based on  &lt;a href="https://vuetifyjs.com/en/" rel="noopener noreferrer"&gt;Vuetify&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;If you’re a developer looking for a  &lt;a href="https://themeselection.com/item/category/nuxt-admin-template/" rel="noopener noreferrer"&gt;Nuxt js Admin Template&lt;/a&gt;  enriched with features and a highly customizable look no further than Materio Free Vuetify Vuejs admin template🤩 .&lt;/p&gt;

&lt;p&gt;Besides, the highest industry standards are considered to bring you the very best NuxtJS admin template that is not just fast🚀and easy to use, but highly scalable. Offering ultimate convenience and flexibility, you’ll be able to build whatever application you want without any hassle.&lt;/p&gt;

&lt;p&gt;Furthermore, you can use this one of the best innovative  &lt;a href="https://themeselection.com/item/category/free-admin-templates/" rel="noopener noreferrer"&gt;free admin template&lt;/a&gt;  to create eye-catching, high-quality, and high-performing single-page applications.&lt;/p&gt;

&lt;p&gt;Besides, your apps will be completely responsive, ensuring they’ll look stunning and function flawlessly on desktops, tablets, and mobile devices&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Features:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Latest &lt;strong&gt;NuxtJS 3&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;VueJS 3, Vuetify 3&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Vite 5&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;  Utilizes &lt;strong&gt;Vue Router, VueUse&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;  Available in both &lt;strong&gt;TypeScript&lt;/strong&gt; &amp;amp; &lt;strong&gt;JavaScript&lt;/strong&gt; version&lt;/li&gt;
&lt;li&gt;  1 Dashboard&lt;/li&gt;
&lt;li&gt;  Remix Icons&lt;/li&gt;
&lt;li&gt;  Basic cards&lt;/li&gt;
&lt;li&gt;  Fully Responsive Layout&lt;/li&gt;
&lt;li&gt;  Organized Folder Structure&lt;/li&gt;
&lt;li&gt;  Clean &amp;amp; Commented Code&lt;/li&gt;
&lt;li&gt;  Well Documented&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Furthermore, this is a free NuxtJS admin template. You can use our innovative admin template to create eye-catching, high-quality, and high-performing single-page applications. Besides, your apps will be completely responsive, ensuring they’ll look stunning and function flawlessly on desktops, tablets, and mobile devices.&lt;/p&gt;

&lt;p&gt;Incredibly versatile, the Materio Vuetify NuxtJS admin template also allows you to build any type of web application. For instance, you can create:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  SaaS platforms&lt;/li&gt;
&lt;li&gt;  Project management apps&lt;/li&gt;
&lt;li&gt;  Ecommerce backends&lt;/li&gt;
&lt;li&gt;  CRM systems&lt;/li&gt;
&lt;li&gt;  Analytics apps&lt;/li&gt;
&lt;li&gt;  Banking apps&lt;/li&gt;
&lt;li&gt;  Education apps&lt;/li&gt;
&lt;li&gt;  Fitness apps &amp;amp; many more….&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  What's Included 📦
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;  Dashboard&lt;/li&gt;
&lt;li&gt;  Account Settings&lt;/li&gt;
&lt;li&gt;  Pages

&lt;ul&gt;
&lt;li&gt;  Login&lt;/li&gt;
&lt;li&gt;  Register&lt;/li&gt;
&lt;li&gt;  Error&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;  Typography&lt;/li&gt;

&lt;li&gt;  Material Design Icons&lt;/li&gt;

&lt;li&gt;  Cards&lt;/li&gt;

&lt;li&gt;  Form layouts

&lt;ul&gt;
&lt;li&gt;  Horizontal Form&lt;/li&gt;
&lt;li&gt;  Horizontal Form with Icons&lt;/li&gt;
&lt;li&gt;  Vertical Form&lt;/li&gt;
&lt;li&gt;  Vertical Form with Icons&lt;/li&gt;
&lt;li&gt;  Multiple Column&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;  Tables&lt;/li&gt;

&lt;/ul&gt;

&lt;h3&gt;
  
  
  Browser Support 🖥️
&lt;/h3&gt;

&lt;p&gt;Materio Vuetify VueJS Free Admin Template is built to work best in the latest desktop mobile and tablet browsers&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Chrome (latest)&lt;/li&gt;
&lt;li&gt;  Firefox (latest)&lt;/li&gt;
&lt;li&gt;  Safari (latest)&lt;/li&gt;
&lt;li&gt;  Opera (latest)&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Changelog 📆
&lt;/h3&gt;

&lt;p&gt;Please refer to the  &lt;a href="https://github.com/themeselection/materio-vuetify-nuxtjs-admin-template-free/blob/main/CHANGELOG.md" rel="noopener noreferrer"&gt;CHANGELOG&lt;/a&gt;  file. We will add detailed release notes to each new release.&lt;/p&gt;

&lt;h3&gt;
  
  
  Looking For Premium Features?🧐
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://themeselection.com/item/materio-vuetify-nuxtjs-admin-template/" rel="noopener noreferrer"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F45ysa89wav77zwzh1wsu.png" alt="Materio Vuetify NuxtJS Admin Template"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Then upgrade to the  &lt;a href="https://themeselection.com/item/materio-vuetify-nuxtjs-admin-template/" rel="noopener noreferrer"&gt;Materio – Vuetify NuxtJS 3 Admin Template&lt;/a&gt;  Pro version. It comes with many amazing features such as:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Vertical (+ vertical collapsed) &amp;amp; Horizontal menu&lt;/li&gt;
&lt;li&gt;3 Skin variants w/ light/dark theme support: Default, Bordered &amp;amp; Semi-dark&lt;/li&gt;
&lt;li&gt;15+ Front pages&lt;/li&gt;
&lt;li&gt;9 pre-designed applications&lt;/li&gt;
&lt;li&gt;5 Niche Dashboards &amp;amp; much more..!!&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For more info click the banner above..!!&lt;/p&gt;

</description>
      <category>nuxt</category>
      <category>webdev</category>
      <category>beginners</category>
      <category>programming</category>
    </item>
    <item>
      <title>100+ GitHub Repositories of Awesome Lists: A Curated Collection</title>
      <dc:creator>Ajay Kalal</dc:creator>
      <pubDate>Mon, 04 Dec 2023 11:02:58 +0000</pubDate>
      <link>https://forem.com/themeselection/100-github-repos-that-created-awesome-lists-a-curated-collection-p06</link>
      <guid>https://forem.com/themeselection/100-github-repos-that-created-awesome-lists-a-curated-collection-p06</guid>
      <description>&lt;p&gt;GitHub has become the central hub for software and web development providing tools and resources that streamline your development workflow. Among these, we have seen a great response to the 'Awesome List' based repositories. &lt;/p&gt;

&lt;p&gt;This makes it a highly convenient and reliable go-to place for developers to explore and discover new resources that can help them enhance their skills and improve their projects. In addition, it saves a lot of your time surfing around the best resource for your project. &lt;/p&gt;

&lt;p&gt;Therefore, today in this post, we've curated a list of the best GitHub repos that create awesome lists.&lt;/p&gt;

&lt;h2&gt;
  
  
  Awesome List of Lists :)
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fcglnep143aylhfv0rfiy.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fcglnep143aylhfv0rfiy.png" alt="An artistic, high-tech digital illustration representing the concept of GitHub repositories creating Awesome Lists for programming languages. " width="800" height="457"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Without wasting any time let's get started with the best awesome list of GitHub repos that create a curated list of resources on GitHub. &lt;/p&gt;




&lt;h3&gt;
  
  
  Programming Language
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://github.com/themeselection/Awesome-JavaScript-Libraries" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome-JavaScript-Libraries&lt;/strong&gt;&lt;/a&gt; - &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The Curated list of 200+ Awesome JavaScript libraries to add stunning UI components to your projects.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/themeselection/Awesome-JavaScript-Libraries" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome-JavaScript-Libraries&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The Curated list of 200+ Awesome JavaScript libraries to add stunning UI components to your projects.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://github.com/themeselection/Awesome-JavaScript-Libraries" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome-JavaScript-Libraries&lt;/strong&gt;&lt;/a&gt; &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The Curated list of 200+ Awesome JavaScript libraries to add stunning UI components to your projects. &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/uhub/awesome-javascript" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome JavaScript&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A curated list of awesome JavaScript frameworks, libraries, and software.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/sorrycc/awesome-javascript" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome JavaScript&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A collection of awesome browser-side JavaScript libraries, resources, and shiny things.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href="https://github.com/vinta/awesome-python" rel="noopener noreferrer"&gt;Awesome Python&lt;/a&gt;&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A curated list of awesome Python frameworks, libraries, software, and resources&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/ChessMax/awesome-programming-languages" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Programming Languages&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The list of awesome programming languages that you might be interested in&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/markets/awesome-ruby" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Ruby&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Collection of awesome Ruby libraries, tools, frameworks, and software&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/akullpp/awesome-java" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Java&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A curated list of awesome frameworks, libraries, and software for the Java programming language.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/fffaraz/awesome-cpp" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Cpp&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;List of awesome C++ (or C) frameworks, libraries, resources, and shiny things. &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/matteocrippa/awesome-swift" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Swift&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A collaborative list of awesome Swift libraries and resources. &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/krispo/awesome-haskell" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Haskell&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A collection of awesome Haskell links, frameworks, libraries, and software. Inspired by awesome projects line.&lt;/p&gt;




&lt;h2&gt;
  
  
  Framework
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/vuejs/awesome-vue" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Vue.js&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A curated list of awesome things related to Vue.js&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/nuxt/awesome" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Nuxtjs&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Make your web development intuitive and performant using these awesome things related to Nuxt.js&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/enaqx/awesome-react" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome React&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is an Interesting awesome list where all the resources are related to React for seamless development. &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/sindresorhus/awesome-nodejs" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Node.js&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Delightful Node.js packages and resources&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/Solido/awesome-flutter" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Flutter&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is an awesome list that curates the best Flutter libraries, tools, tutorials, articles, and more.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/sindresorhus/awesome-electron" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Electron&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Useful resources for creating apps with Electron for creating apps using web technologies.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/awe50me/Awesome-NextJs" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Nextjs&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A curated list of awesome resources: books, videos, articles about using Next.js &lt;/p&gt;




&lt;p&gt;If you're working on Next.js project, then we recommend to use &lt;a href="https://themeselection.com/item/category/next-js-admin-template/" rel="noopener noreferrer"&gt;Nextjs Admin Template&lt;/a&gt; built with MUI&lt;/p&gt;

&lt;p&gt;&lt;a href="https://themeselection.com/item/sneat-mui-react-nextjs-admin-template/" rel="noopener noreferrer"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F1ysjwypv7kkcw8amixve.png" alt="Image description" width="800" height="185"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;A curated list of awesome things related to NextJs.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/vuetifyjs/awesome-vuetify" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Vuetify&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Get the collection of applications and tools that help to showcase the best of what Vuetify has to offer. &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/wsvincent/awesome-django" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Django&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A curated list of awesome things related to Django&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/awesome-bootstrap-org/awesome-bootstrap" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Bootstrap&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Awesome - A curated list of amazing Bootstrap tools and themes.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/PatrickJS/awesome-angular" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Angular&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is an awesome list of Angular seed repos, starters, boilerplates, examples, tutorials, components, modules, videos, and anything else in the Angular ecosystem.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/chiraggude/awesome-laravel" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Laravel&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A curated list of bookmarks, packages, tutorials, videos, and other cool resources from the Laravel ecosystem&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/TheComputerM/awesome-svelte" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Svelte&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A curated list of awesome Svelte resources to let you build web applications. &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/KotlinBy/awesome-kotlin" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Kotlin&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A curated list of awesome Kotlin-related stuff Inspired by awesome-java.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/sadcitizen/awesome-marionette" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Marionette.js&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A list of resources for marionette.js&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/aniftyco/awesome-tailwindcss" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome TailwindCSS&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Tailwind CSS is a utility-first CSS framework for rapidly building custom user interfaces.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/innocenzi/awesome-inertiajs" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Interia.js&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A curated list of awesome Inertia.js resources&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/quozd/awesome-dotnet" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesine Dotnet&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A collection of awesome .NET libraries, tools, frameworks, and software&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/thangchung/awesome-dotnet-core" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome .NET Core&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Here is a curated list of excellent libraries, tools, frameworks, and software for .NET core.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/vitejs/awesome-vite" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Vite&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A curated list of awesome things related to Vite.js&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/jondot/awesome-react-native" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome React-Native&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Awesome React Native is an awesome style list that curates the best React Native libraries, tools, tutorials, articles, and more.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/brillout/awesome-react-components" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome React Components&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Get all the React Components and libraries in this curated list. &lt;/p&gt;




&lt;h3&gt;
  
  
  Tools
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/viatsko/awesome-vscode" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome VS Code&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A curated list of delightful VS Code packages and resources.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/themeselection/best-chrome-extensions" rel="noopener noreferrer"&gt;&lt;strong&gt;Best Chrome Extensions&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A Curated list of the best Chrome extensions to boost your productivity in your Browsers&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/docker/awesome-compose" rel="noopener noreferrer"&gt;&lt;strong&gt;Docker Awesome Compose&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;These samples provide a starting point for how to integrate different services using a Compose file and to manage their deployment with Docker Compose.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/veggiemonk/awesome-docker" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Docker&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A curated list of Docker resources and projects&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/agarrharr/awesome-cli-apps" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome CLI&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;All the useful resources and a list of CLI apps. &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/alebcay/awesome-shell" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Shell&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A curated list of delightful Shell frameworks, libraries, and software.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/TonnyL/Awesome_APIs" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome APIs&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A curated list of awesome resources for APIs.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/yosriady/awesome-api-devtools" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome API DevTools&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A curated list of API development tools and resources.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/JefMari/awesome-wysiwyg-editors" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome WYSIWYG Editors&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A curated list of awesome WYSIWYG (What You See Is What You Get) editors.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/mundimark/awesome-markdown-editors" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Markdown Editors&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A curated list of awesome Markdown editors.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/xjh22222228/awesome-web-editor" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome web Editor&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A list of all the open-source web editors for efficient workflow while developing. &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/LeCoupa/awesome-cheatsheets" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Cheatsheets&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Awesome cheat sheets for popular programming languages, frameworks, and development tools.&lt;/p&gt;




&lt;h3&gt;
  
  
  Development Topics
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/josephmisiti/awesome-machine-learning" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Machine Learning&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A carefully selected collection of excellent machine learning frameworks, libraries, and software.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/marcobiedermann/search-engine-optimization" rel="noopener noreferrer"&gt;&lt;strong&gt;Search engine Optimization&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A helpful checklist/collection of Search Engine Optimization (SEO) tips and techniques.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/lnishan/awesome-competitive-programming" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Competitive Programming&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Here's a carefully selected collection of excellent resources for Competitive Programming, Algorithms, and Data Structures.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/academic/awesome-datascience" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Data Science&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you're looking to learn and apply Data Science to solve real-world problems, this is the perfect repository for you.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/ChristosChristofidis/awesome-deep-learning" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Deep Learning&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A curated list of awesome deep-learning tutorials, projects, and communities.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href="https://github.com/keon/awesome-nlp" rel="noopener noreferrer"&gt;Awesome NLP&lt;/a&gt;&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A curated list of resources dedicated to Natural Language Processing (NLP)&lt;/p&gt;

&lt;h3&gt;
  
  
  Data Bases
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/shlomi-noach/awesome-mysql" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome MySQL&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A curated list of awesome MySQL free and open-source software, libraries, and resources. &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/dahlia/awesome-sqlalchemy" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome SQLAlchemy&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A curated list of awesome extra libraries and resources like Dialects, data migration tools, GIS and Spatial Databases, profiles, rs, and many more.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/ramnes/awesome-mongodb" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome MongoDB&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A curated list of awesome MongoDB resources, libraries, tools, and applications. &lt;/p&gt;

&lt;h3&gt;
  
  
  Learning Resources
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/trimstray/the-book-of-secret-knowledge" rel="noopener noreferrer"&gt;&lt;strong&gt;The Book of Secret Knowledge&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A collection of inspiring lists, manuals, cheatsheets, blogs, hacks, one-liners, CLI/web tools, and more&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/prakhar1989/awesome-courses" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Courses&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is a list of awesome university courses for learning Computer Science&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://github.com/binhnguyennus/awesome-scalability" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Scalability&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;This repository provides the patterns of scalable, reliable, and performant large-scale systems&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;&lt;a href="https://github.com/MunGell/awesome-for-beginners" rel="noopener noreferrer"&gt;Awesome for Beginners&lt;/a&gt;&lt;/strong&gt; &lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This list is focused on beginner-friendly projects, making it easier for newcomers to start contributing to open source​​.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;&lt;a href="https://github.com/DopplerHQ/awesome-interview-questions" rel="noopener noreferrer"&gt;Awesome Interview Questions&lt;/a&gt;&lt;/strong&gt; &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A curated list of lists of interview questions is useful for preparation and study​​.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/karlhorky/learn-to-program" rel="noopener noreferrer"&gt;&lt;strong&gt;Learn-to-program&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This list aims to be a curated set of high-quality educational resources.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/therebelrobot/awesome-workshopper" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Workshopper&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A list of CLI workshopper/adventure tutorials for various things.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/matteofigus/awesome-speaking" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Speaking&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Here is a compilation of excellent resources related to public speaking.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/zpoint/CPython-Internals" rel="noopener noreferrer"&gt;&lt;strong&gt;Cpython Internals&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Dive into CPython internals, trying to illustrate every detail of CPython implementation&lt;/p&gt;

&lt;h3&gt;
  
  
  AI
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/awe50me/Awesome-AI" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome AI&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A curated list of awesome things related to artificial intelligence tools&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://github.com/filipecalegario/awesome-generative-ai" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Generative AI&lt;/strong&gt;&lt;/a&gt; by &lt;a href="https://github.com/filipecalegario" rel="noopener noreferrer"&gt;Filipecalegario&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A curated list of Generative AI tools, works, models, and references&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://github.com/steven2358/awesome-generative-ai" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Generative AI&lt;/strong&gt;&lt;/a&gt; by &lt;a href="https://github.com/steven2358" rel="noopener noreferrer"&gt;Steaven2358&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A curated list of modern Generative Artificial Intelligence projects and services&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/owainlewis/awesome-artificial-intelligence" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Artificial Intelligence&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A curated list of AI courses, books, lectures, and papers.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/ankitshah009/all-about-ai-residency" rel="noopener noreferrer"&gt;&lt;strong&gt;All-about-ai-residency&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is a curated list of AI Residency and program information.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/wangyongjie-ntu/Awesome-explainable-AI" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome-explainable-AI&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A collection of research materials on AI and Machine learning with some major sources. &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/hades217/awesome-ai" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Artificial Intelligence&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Here's a carefully curated list of resources related to Artificial Intelligence, including courses, tools, apps, and open-source projects.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/Divyanshigarg/Useful-AI-WEBSITE-LIST" rel="noopener noreferrer"&gt;&lt;strong&gt;Useful-AI-WEBSITE-LIST&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A curated list of all the useful AI Websites.&lt;/p&gt;




&lt;h3&gt;
  
  
  Testing
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/TheJambo/awesome-testing" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Testing&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A curated list of testing resources&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/mojoaxel/awesome-regression-testing" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Visual Regression Testing&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A curated list of resources around the topic: visual regression testing&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/christian-bromann/awesome-selenium" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Selenium&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A curated list of delightful Selenium resources.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/SrinivasanTarget/awesome-appium" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Appium&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Get all the resources and tools related to Appium in this awesome list. &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/sindresorhus/awesome-tap" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Tap&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Useful resources for the Test Anything Protocol&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/aliesbelik/awesome-jmeter" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome JMeter&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A collection of resources covering different aspects of JMeter usage.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/grafana/awesome-k6" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome K6&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is an exclusive list of powerful tools, highly informative content, and cutting-edge projects that make effective use of k6.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/mxschmitt/awesome-playwright" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Playwright&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A curated list of awesome tools, utils, and projects using Playwright&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/fityanos/awesome-quality-assurance-roadmap" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Quality Assurance Roadmap&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The starting point of your career as a Software Quality Assurance Engineer | Quality Automation Engineer &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/aliesbelik/awesome-gatling" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Gatling&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Discover the ultimate collection of resources that will help you unleash the full potential of the Gatling load testing tool. &lt;/p&gt;




&lt;h3&gt;
  
  
  Design
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/gztchan/awesome-design" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Design&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Discover a vast array of expertly picked design resources from all corners of the globe. Perfect for designers and creatives.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/goabstract/Awesome-Design-Tools" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Design Tools&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The list of essential design tools, plugins, and conferences to kickstart your design journey.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/nicolesaidy/awesome-web-design" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Web Design&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Explore this list of excellent resources and take your designs to the next level!&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/alexpate/awesome-design-systems" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Design systems&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A collection of awesome design systems&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/robinstickel/awesome-design-principles" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Design Principles&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A curated list of good design and experience principles.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/wasabeef/awesome-android-ui" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Android UI&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A curated list of awesome Android UI/UX libraries&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/cjwirth/awesome-ios-ui" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome-IOS-UI&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A curated list of awesome iOS UI/UX libraries&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/ttt30ga/awesome-product-design" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Product Design&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A collection of bookmarks, resources, and articles for product designers.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/react-figma/awesome-figma" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Figma&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A curated list of awesome Figma stuff that focused on integration Figma and development, e.g. Figma Plugins, Figma Rest API.+&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/ryanoasis/nerd-fonts" rel="noopener noreferrer"&gt;&lt;strong&gt;Nerd Fonts&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Nerd Fonts is a project that patches developer-targeted fonts with many glyphs (icons).&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/ajay-prabhakar/awesome-flutter-ui" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Flutter UI&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A collection of excellent Flutter UI design templates to easily incorporate into your app and save time creating widgets.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/DovAmir/awesome-design-patterns" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Design Patterns&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A curated list of software and architecture-related design patterns.&lt;/p&gt;




&lt;h3&gt;
  
  
  Miscellaneous
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/ripienaar/free-for-dev" rel="noopener noreferrer"&gt;&lt;strong&gt;Free-for.dev&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A list of SaaS, PaaS, and IaaS offerings that have free tiers of interest to DevOps and infradev&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/burningtree/awesome-json" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome JSON&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Check out this amazing collection of JSON libraries and resources that have been carefully curated for you. &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href="https://github.com/AchoArnold/discount-for-student-dev" rel="noopener noreferrer"&gt;Discount for Student Dev&lt;/a&gt;&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is a list of discounts on software (SaaS, PaaS, IaaS, etc.) and other offerings for developers who are students&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href="https://github.com/kilimchoi/engineering-blogs" rel="noopener noreferrer"&gt;Software Engineering Blogs&lt;/a&gt;&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A curated list of engineering blogs&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://tools.kausalflow.com/tools/" rel="noopener noreferrer"&gt;&lt;strong&gt;Awesome Research Tools&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Tools for Academic Research&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href="https://github.com/binhnguyennus/awesome-scalability" rel="noopener noreferrer"&gt;Awesome Scalability&lt;/a&gt;&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;An updated and organized reading list for illustrating the patterns of scalable, reliable, and performant large-scale systems.&lt;/p&gt;




&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;There you go, this are some best github awesome libraries who have curated some best resources out there. We have tried to add one of the popular repositories in the list and we hope you like curated list of lists :)&lt;/p&gt;

&lt;p&gt;Remember this list does not claim to have all the awesome lists. We are still working on to keep updating this list. If you have any recommendation then you're most welcome in comment section :)&lt;/p&gt;

&lt;p&gt;Cheers🥂!&lt;/p&gt;




&lt;h3&gt;
  
  
  About us
&lt;/h3&gt;

&lt;p&gt;We, at &lt;a href="https://themeselection.com/" rel="noopener noreferrer"&gt;&lt;strong&gt;ThemeSelection&lt;/strong&gt;&lt;/a&gt;, provide selected high-quality, modern design, professional and easy-to-use premium and free &lt;a href="https://themeselection.com/item/category/admin-templates/" rel="noopener noreferrer"&gt;&lt;strong&gt;Admin Panels&lt;/strong&gt;&lt;/a&gt;, such as &lt;a href="https://themeselection.com/item/category/bootstrap-admin-templates/" rel="noopener noreferrer"&gt;&lt;strong&gt;bootstrap admin template&lt;/strong&gt;&lt;/a&gt;, &lt;a href="https://themeselection.com/item/category/react-admin-templates/" rel="noopener noreferrer"&gt;&lt;strong&gt;React Admin Dashboard&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt;,&lt;/strong&gt; &lt;a href="https://themeselection.com/item/category/asp-net-dashboard/" rel="noopener noreferrer"&gt;&lt;strong&gt;Asp NET Core Admin Dashboard&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt;,&lt;/strong&gt; &lt;a href="https://themeselection.com/item/category/vuejs-admin-templates/" rel="noopener noreferrer"&gt;&lt;strong&gt;Vue Admin Template&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt;,&lt;/strong&gt; &lt;a href="https://themeselection.com/item/category/next-js-admin-template/" rel="noopener noreferrer"&gt;&lt;strong&gt;Next JS Dashboard&lt;/strong&gt;&lt;/a&gt;, &lt;a href="https://themeselection.com/item/category/ui-kits/" rel="noopener noreferrer"&gt;&lt;strong&gt;UI Kits&lt;/strong&gt;&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;If you are looking for &lt;a href="https://themeselection.com/item/category/free-admin-templates/" rel="noopener noreferrer"&gt;&lt;strong&gt;free admin templates&lt;/strong&gt;&lt;/a&gt;, UI kits and themes then do visit our site…!!&lt;/p&gt;

</description>
      <category>awesome</category>
      <category>list</category>
      <category>github</category>
      <category>opensource</category>
    </item>
    <item>
      <title>Best 6 Python IDEs: Made For Python Only. 😎</title>
      <dc:creator>ThemeSelection</dc:creator>
      <pubDate>Thu, 09 Nov 2023 13:51:15 +0000</pubDate>
      <link>https://forem.com/themeselection/best-python-ides-1mgk</link>
      <guid>https://forem.com/themeselection/best-python-ides-1mgk</guid>
      <description>&lt;p&gt;Looking for the best Python IDE to speed up your workflow? Well, here we have gathered Super Six Python IDEs which are specifically made for Python only to make sure you get the work done smoothly.&lt;/p&gt;

&lt;p&gt;Before we start the list, let's understand what is Python IDE, its benefits, and how to choose the best IDE for your project.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is a Python IDE?
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ftwod7pbexj177udtsq5u.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ftwod7pbexj177udtsq5u.png" alt="Python IDE" width="800" height="400"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;A Python Integrated Development Environment (IDE) software application specialized for Python development tasks. True to its name, an IDE combines a range of tools tailored for the software development process. These tools commonly encompass:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  An editor equipped with features like syntax highlighting and auto-completion.&lt;/li&gt;
&lt;li&gt;  Tools for building, executing, and debugging code.&lt;/li&gt;
&lt;li&gt;  Support for version control systems.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  IDE vs. Code Editor: What's the Core Difference?
&lt;/h3&gt;

&lt;p&gt;An Integrated Development Environment (IDE) is a comprehensive software tool that provides a complete development environment, including a code editor, debugger, and build automation tools. It's designed for more extensive development tasks, offering features like project management and integrated testing.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Full-fledged software with a code editor.&lt;/li&gt;
&lt;li&gt;  Includes features like debugging, build tools, and project management.&lt;/li&gt;
&lt;li&gt;  Suitable for complex coding tasks and larger projects.&lt;/li&gt;
&lt;li&gt;  Offers a comprehensive development environment.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;On the other hand, a Code Editor is a simpler tool primarily focused on editing code. It lacks the advanced features of an IDE but provides a lightweight platform for writing and editing code, making it ideal for quick edits and smaller coding tasks.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Lightweight tool for writing and editing code.&lt;/li&gt;
&lt;li&gt;  Lacks advanced features like debugging and project management.&lt;/li&gt;
&lt;li&gt;  Ideal for quick edits and smaller coding tasks.&lt;/li&gt;
&lt;li&gt;  Focuses on code editing and simplicity.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://themeselection.com/item/materio-bootstrap-django-admin-template/"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fxs8l8s2mxisd76hu7u1f.png" alt="Materio Django Admin Template" width="800" height="184"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Benefits of Using Python IDE:
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;  Efficient code writing and editing&lt;/li&gt;
&lt;li&gt;  Streamlined debugging process&lt;/li&gt;
&lt;li&gt;  Integrated build and execution tools&lt;/li&gt;
&lt;li&gt;  Intelligent code completion&lt;/li&gt;
&lt;li&gt;  Support for version control&lt;/li&gt;
&lt;li&gt;  Project management features&lt;/li&gt;
&lt;li&gt;  Enhanced productivity for developers&lt;/li&gt;
&lt;li&gt;  Multi-language support&lt;/li&gt;
&lt;li&gt;  Active community and plugin ecosystem&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Essential Requirements for choosing the best Python IDE:
&lt;/h3&gt;

&lt;p&gt;Following are some core features that make coding easier:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Compatibility with your operating system&lt;/li&gt;
&lt;li&gt;  Python version compatibility&lt;/li&gt;
&lt;li&gt;  User-friendly and intuitive interface&lt;/li&gt;
&lt;li&gt;  Robust code editor with features like syntax highlighting&lt;/li&gt;
&lt;li&gt;  Debugging tools for error identification and correction&lt;/li&gt;
&lt;li&gt;  Extensive library and plugin support&lt;/li&gt;
&lt;li&gt;  Good documentation and community support&lt;/li&gt;
&lt;li&gt;  Efficient project management capabilities&lt;/li&gt;
&lt;li&gt;  Integration with version control systems like Git&lt;/li&gt;
&lt;li&gt;  Performance and responsiveness on your hardware&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;In this collection, we'll explore the top Python IDEs in detail.&lt;/p&gt;

&lt;h2&gt;
  
  
  Top Python IDEs
&lt;/h2&gt;

&lt;p&gt;As discussed above, an IDE is a software tool designed to empower computer programmers with comprehensive software development capabilities. Typically, IDEs encompass a source code editor, build automation tools, and a debugger.&lt;/p&gt;

&lt;p&gt;Now, let's look at some of the most popular Python IDEs. Understand that different IDEs are meant for various purposes, so choose them as per your project needs.&lt;/p&gt;

&lt;p&gt;Let's begin now..!!&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fojs476z3rrxcwb7bmgl4.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fojs476z3rrxcwb7bmgl4.gif" alt="Let's begin gif" width="400" height="222"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://docs.python.org/3/library/idle.html"&gt;IDLE&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fw1vuij3yoswyrsxdd501.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fw1vuij3yoswyrsxdd501.png" alt="Python IDE" width="800" height="400"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;IDLE is Python’s Integrated Development and Learning Environment. It is coded in 100% pure Python, using the  &lt;a href="https://docs.python.org/3/library/tkinter.html#module-tkinter"&gt;&lt;code&gt;tkinter&lt;/code&gt;&lt;/a&gt;  GUI toolkit, and works mostly the same on Windows, Unix, and macOS. Besides, it offers a multi-window text editor with multiple undo, Python colorizing, smart indent, call tips, auto-completion, and other features.&lt;/p&gt;

&lt;h4&gt;
  
  
  The most notable features of IDLE include:
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;  Ability to search for multiple files&lt;/li&gt;
&lt;li&gt;  Smart indenting, along with basic text editor features&lt;/li&gt;
&lt;li&gt;  Python shell window (interactive interpreter) with colorizing of code input, output, and error messages&lt;/li&gt;
&lt;li&gt;  Search within any window, replace within editor windows, and search through multiple files (grep)&lt;/li&gt;
&lt;li&gt;  Debugger with persistent breakpoints, stepping, and viewing of global and local namespaces&lt;/li&gt;
&lt;li&gt;  Configuration, browsers, and other dialogs&lt;/li&gt;
&lt;/ul&gt;




&lt;blockquote&gt;
&lt;p&gt;Also, check the &lt;strong&gt;&lt;a href="https://dev.to/themeselection/python-web-scraping-made-easy-explore-these-8-libraries-24eo"&gt;Python Web Scraping Tools&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h3&gt;
  
  
  &lt;a href="https://www.jetbrains.com/pycharm/"&gt;PyCharm&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fmjp9lalip3bifnc6y79b.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fmjp9lalip3bifnc6y79b.png" alt="Pycharm" width="800" height="499"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;PyCharm is a powerful Python IDE that can help you write better code. It has a variety of features that can help you be more productive, including code completion, error checking, and refactoring. It also has a built-in debugger and test runner, so you can easily find and fix bugs in your code.&lt;/p&gt;

&lt;p&gt;Most importantly, PyCharm supports Python development directly. So, you just need to open a new file and start writing code. Furthermore, you can also run and debug Python directly inside PyCharm, and it has support for source control and projects.&lt;/p&gt;

&lt;h4&gt;
  
  
  Notable Features:
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;Syntax Highlighting&lt;/li&gt;
&lt;li&gt;Code Completion&lt;/li&gt;
&lt;li&gt;Code Navigation&lt;/li&gt;
&lt;li&gt;Refactoring&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://visualstudio.microsoft.com/vs/features/python/"&gt;Visual Studio&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fu5lwonl0jssy8r8sznwc.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fu5lwonl0jssy8r8sznwc.png" alt="Visual Studio" width="800" height="418"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Built by Microsoft, Visual Studio is a comprehensive Python editor that provides a range of features to help developers write and debug code more effectively. It includes syntax highlighting, autocompletion, code formatting, and refactoring, as well as support for debugging and unit testing. It also has a built-in REPL (Read-Eval-Print Loop) that allows developers to test their code interactively. &lt;/p&gt;

&lt;p&gt;Visual Studio is available for Windows and macOS only. It is a popular choice for Python developers due to its wide range of features and its extension support for a variety of platforms. &lt;a href="http://pytools.codeplex.com/"&gt;Python Tools for Visual Studio (PTVS)&lt;/a&gt; enables Python coding in Visual Studio, as well as Intellisense for Python, debugging, and other tools.&lt;/p&gt;

&lt;h4&gt;
  
  
  Notable Features:
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;  A code editor that "knows your code" and can provide tooltips, completions, and code snippets&lt;/li&gt;
&lt;li&gt;  Support for finding and installing third-party libraries&lt;/li&gt;
&lt;li&gt;  The ability to interactively debug code on Windows and Linux&lt;/li&gt;
&lt;li&gt;  Integration with Git for version control&lt;/li&gt;
&lt;li&gt;  Support for unit testing&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;Also, check the best &lt;a href="https://themeselection.com/item/category/django-admin-template/"&gt;Sneat Bootstrap 5 Django Admin Template&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://themeselection.com/item/category/django-admin-template/"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fdy7yysul1jxqu5nyx6cf.png" alt="Sneat Bootstrap 5 Django Admin Template" width="800" height="600"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Sneat Bootstrap 5 Django Admin Template – is the latest Django 4 Admin Template. It is the most developer-friendly &amp;amp; highly customizable &lt;strong&gt;&lt;a href="https://themeselection.com/item/category/django-admin-template/"&gt;Django dashboard&lt;/a&gt;&lt;/strong&gt;. Besides, the highest industry standards are considered to bring you the best Django admin dashboard template that is not just fast and easy to use, but highly scalable.&lt;/p&gt;

&lt;p&gt;In addition, it is incredibly versatile and very suitable for your project. Besides, this bootstrap-based Django &lt;a href="https://themeselection.com/item/category/admin-templates/"&gt;admin Template&lt;/a&gt; also allows you to build any type of web app with ease. For instance, you can create: SaaS platforms, Project management apps, E-commerce backends, CRM systems, Analytics apps, Banking apps, etc.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Features:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Built with &lt;strong&gt;Django 4&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;  Using CSS Framework &lt;strong&gt;Bootstrap 5&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Docker&lt;/strong&gt; for Faster Development&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Vertical and Horizontal&lt;/strong&gt; layouts&lt;/li&gt;
&lt;li&gt;  Default, Bordered &amp;amp; Semi-dark themes&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Light, Dark, and System&lt;/strong&gt; mode support&lt;/li&gt;
&lt;li&gt;  Internationalization/i18n &amp;amp; RTL Ready&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Python-Dotenv:&lt;/strong&gt; Environment variables&lt;/li&gt;
&lt;li&gt;  &lt;a href="https://demos.themeselection.com/sneat-bootstrap-html-admin-template/documentation/django-init-configurations.html"&gt;Theme Config&lt;/a&gt;: Customize our template without a sweat&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;5 Dashboard&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;10 Pre-Built Apps&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;15+ Front Pages&lt;/strong&gt;  and many more.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://demos.themeselection.com/sneat-bootstrap-html-django-admin-template/html/vertical-menu-template/"&gt;Demo&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://themeselection.com/item/sneat-bootstrap-django-admin-template/"&gt;Download&lt;/a&gt;&lt;/p&gt;




&lt;h3&gt;
  
  
  &lt;a href="https://www.pydev.org/"&gt;Eclipse + PyDev&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F0d0vsoogqdpn2e86td3w.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F0d0vsoogqdpn2e86td3w.png" alt="Eclipse + PyDev" width="800" height="400"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Eclipse is a well-known name in the IDEs. It works well with multiple OS like Linux, Windows, and macOS. Furthermore, Eclipse is an open-source IDE for Java development. Additionally, it also offers a rich marketplace of extensions and add-ons, which makes Eclipse useful for a wide range of development activities.&lt;/p&gt;

&lt;p&gt;PyDev is one of the extensions, which enables Python debugging, code completion, and an interactive Python console.&lt;/p&gt;

&lt;h4&gt;
  
  
  The most notable features of PyDev are:
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;  Provides code completion, auto import, and code refactoring facilities.&lt;/li&gt;
&lt;li&gt;  Allows for integration with Django.&lt;/li&gt;
&lt;li&gt;  Incorporates a powerful debugger.&lt;/li&gt;
&lt;li&gt;  Facilitates unit testing by providing Unittest integration.&lt;/li&gt;
&lt;li&gt;  Supports code control with its Git integration.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.spyder-ide.org/"&gt;Spyder&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjlcng78us1ghe3favzf2.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjlcng78us1ghe3favzf2.png" alt="Spyder IDE" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Spyder is an open-source Python IDE designed for data science workflows, and it comes bundled with the Anaconda package manager distribution, making it potentially pre-installed on your system.&lt;/p&gt;

&lt;p&gt;Notably, Spyder is tailored for data scientists working with Python. This is evident in its seamless integration with essential Python data science libraries like SciPy, NumPy, and Matplotlib.&lt;/p&gt;

&lt;p&gt;Spyder offers standard IDE features, including a feature-rich code editor with syntax highlighting, Python code completion, and an integrated documentation browser.&lt;/p&gt;

&lt;h4&gt;
  
  
  Notable Features:
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;  It analyzes code to provide automatic code completion, horizontal/vertical splitting, and a go-to-definition.&lt;/li&gt;
&lt;li&gt;  Specifically designed for data scientists; ​hence, it integrates well with data science libraries like NumPy.&lt;/li&gt;
&lt;li&gt;  Allows you to run the IPython console.&lt;/li&gt;
&lt;li&gt;  It includes a powerful debugger.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  &lt;a href="http://thonny.org/"&gt;Thonny&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fc6k9ie5hy36v36d09lqo.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fc6k9ie5hy36v36d09lqo.png" alt="Thonny" width="800" height="400"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;A more recent addition to the Python IDE family, Thonny is billed as an IDE for beginners. Written and maintained by the Institute of Computer Science at the University of Tartu in Estonia, Thonny is available for all major platforms, with installation instructions on the site.&lt;/p&gt;

&lt;p&gt;By default, Thonny installs with its own bundled version of Python, so you don’t need to install anything else new. More experienced users may need to tweak this setting so that Thonny will find and use libraries that are already installed.&lt;/p&gt;

&lt;h4&gt;
  
  
  Notable Features:
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;  Line numbers.&lt;/li&gt;
&lt;li&gt;  Statement stepping without breakpoints.&lt;/li&gt;
&lt;li&gt;  Live variables during debugging.&lt;/li&gt;
&lt;li&gt;  Stepping through the evaluation of the expressions&lt;/li&gt;
&lt;li&gt;  Separate windows for executing function calls&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Conclusion:
&lt;/h2&gt;

&lt;p&gt;In conclusion, Python IDEs offer a diverse range of features and tools, catering to the varied needs of developers. From beginner-friendly options to advanced environments, there's a Python IDE for everyone. Choosing the right one depends on your specific project and preferences. Remember that the Python development landscape is dynamic, so it's worth exploring these IDEs to find the one that best aligns with your coding style and workflow.&lt;/p&gt;

&lt;p&gt;In summary, Python IDEs have evolved to streamline development, boost productivity, and enhance the overall coding experience. Whether you prioritize simplicity, versatility, or specialized features, there's an IDE that matches your requirements. Make an informed choice, considering factors like your project's scope, your level of expertise, and the type of development you're involved in. These IDEs are valuable tools in the Python ecosystem, empowering developers to write efficient, error-free code.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>python</category>
      <category>programming</category>
      <category>coding</category>
    </item>
  </channel>
</rss>
