Plugin

Top 23 Plugin Open-Source Projects

  1. filemanager

    📂 Web File Browser

    Project mention: How to Upload and Download Files to Docker Volumes | dev.to | 2024-11-07

    FileBrowser Documentation

  2. CodeRabbit

    CodeRabbit: AI Code Reviews for Developers. Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.

    CodeRabbit logo
  3. typescript-eslint

    :sparkles: Monorepo for all the tooling which enables ESLint to support TypeScript

    Project mention: TypeScript strictly typed - Part 1: configuring a project | dev.to | 2024-06-12

    For ESLint + TypeScript ESLint, with the new flat config eslint.config.js:

  4. filepond

    🌊 A flexible and fun JavaScript file upload library

    Project mention: Frontend resources! 🚀 | dev.to | 2024-05-25

    FilePond: Simplify file uploads with FilePond

  5. WeChatPlugin-MacOS

    微信小助手

  6. CoreDNS

    CoreDNS is a DNS server that chains plugins

    Project mention: Migrating Mess with DNS to Use PowerDNS | news.ycombinator.com | 2024-08-19

    Yes lots of folks[0]. At Cruise we made use of it to do split dns when were migrating from aws to gcp but dont know if it’s still used

    [0] - https://github.com/coredns/coredns/blob/master/ADOPTERS.md

  7. nvim-lspconfig

    Quickstart configs for Nvim LSP

    Project mention: How to setup VueJs in Neovim (January 2025) | dev.to | 2025-01-02

    Packages that we will use : blink.cmp for autocompletion, typescript-tools for the typescript LSP, neovim/nvim-lspconfig to set up the LSP, and Mason so we can install volar.

  8. VirtualApp

    Virtual Engine for Android(Support 14.0 in business version)

  9. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
  10. ultisnips

    UltiSnips - The ultimate snippet solution for Vim. Send pull requests to SirVer/ultisnips!

    Project mention: C++ Template Macroprogramming versus Lisp Macros | news.ycombinator.com | 2024-11-15

    Let’s say, you’re writing a web application. In most programming language you’d be using libraries or rely on a framework. With Lisp macros, you can program the archetype of a web application. And then use a simpler language to describe you application. Think of it as programmable snippets. Something like Ultisnips [0], but inherent to the language.

    [0]: https://github.com/SirVer/ultisnips

  11. TikTokDownload

    抖音去水印批量下载用户主页作品、喜欢、收藏、图文、音频

  12. gitalk

    Gitalk is a modern comment component based on Github Issue and Preact.

  13. Auto-Photoshop-StableDiffusion-Plugin

    A user-friendly plug-in that makes it easy to generate stable diffusion images inside Photoshop using either Automatic or ComfyUI as a backend.

  14. JUCE

    JUCE is an open-source cross-platform C++ application framework for desktop and mobile applications, including VST, VST3, AU, AUv3, LV2 and AAX audio plug-ins.

    Project mention: C++ Is an Absolute Blast | news.ycombinator.com | 2024-12-23

    The amount of high performance, production grade, massively tested libraries written in C++ is unbeatable. I will be honest here, it's easier to improve C++ security by implementing a compiler that produces safer C++ (like Typescript to Javascript) than rewriting everything in any other language (Rust, Zig, Odin, whatever).

    I mean, could you estimate the cost ($ and time) it would take to rewrite the best audio framework in any other language? (https://juce.com/).

  15. DroidPlugin

    A plugin framework on android,Run any third-party apk without installation, modification or repackage

  16. hatch

    Modern, extensible Python project management

    Project mention: Switching from Pyenv to Uv | news.ycombinator.com | 2025-03-12

    We had to drop hatch for now, because it does not work well with uv's lockfiles. Someone opened an issue here: https://github.com/pypa/hatch/issues/1886. We use bare uv for now.

  17. FriendlyId

    FriendlyId is the “Swiss Army bulldozer” of slugging and permalink plugins for ActiveRecord. It allows you to create pretty URL’s and work with human-friendly strings as if they were numeric ids for ActiveRecord models.

    Project mention: Designing a Website Without 404s | news.ycombinator.com | 2024-06-13

    You can do that with many websites that have ids in their SEO slugs, this is usually not an issue as it's still standardized in a way that the string is just split into the id and the rest and you can look it up with both parts.

    Popular libraries like https://github.com/norman/friendly_id implement it like that too.

  18. zotero-better-notes

    Everything about note management. All in Zotero.

    Project mention: Google Scholar PDF Reader | news.ycombinator.com | 2024-03-20

    Die you check the `zotero-better-notes`? [1]

    > LaTex math in Zotero note is no longer a dream. The `zotero-better-notes` addon now supports this feature!

    [1]: https://github.com/windingwind/zotero-better-notes

  19. jasminum

    A Zotero add-on to retrive CNKI meta data. 一个简单的Zotero 插件,用于识别中文元数据

  20. will_paginate

    Pagination library for Rails and other Ruby applications

  21. vim-polyglot

    A solid language pack for Vim.

  22. appkit

    The full stack toolkit to build onchain app UX

    Project mention: INTEGRATION OF DAPPS WITH MODE: WALLET AND SMART CONTRACTS | PART 1: CONNECTING THE WALLET | dev.to | 2024-12-10

    // context/index.tsx 'use client' import { wagmiAdapter, projectId } from '../config' import { QueryClient, QueryClientProvider } from '@tanstack/react-query' import { createAppKit } from '@reown/appkit/react' import { mainnet, sepolia, mode, modeTestnet } from '@reown/appkit/networks' import React, { type ReactNode } from 'react' import { cookieToInitialState, WagmiProvider, type Config } from 'wagmi' // Set up queryClient const queryClient = new QueryClient() if (!projectId) { throw new Error('Project ID is not defined') } // Set up metadata const metadata = { name: 'mode-chain', description: 'AppKit Example', url: 'https://reown.com/appkit', // origin must match your domain & subdomain icons: ['https://assets.reown.com/reown-profile-pic.png'] } // Create the modal const modal = createAppKit({ adapters: [wagmiAdapter], projectId, networks: [mainnet, sepolia, mode, modeTestnet], defaultNetwork: mainnet, metadata: metadata, features: { analytics: true, // Optional - defaults to your Cloud configuration } }) function ContextProvider({ children, cookies }: { children: ReactNode; cookies: string | null }) { const initialState = cookieToInitialState(wagmiAdapter.wagmiConfig as Config, cookies) return ( {children}QueryClientProvider> WagmiProvider> ) } export default ContextProvider

  23. Small

    A small framework to split app into small parts

  24. search-plugins

    Search plugins for the search feature

  25. toggleterm.nvim

    A neovim lua plugin to help easily manage multiple terminal windows

    Project mention: Ultimate Neovim Setup Guide: lazy.nvim Plugin Manager | dev.to | 2024-06-24

    akinsho/toggleterm.nvim: A neovim lua plugin to help easily manage multiple terminal windows.

  26. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
NOTE: The open source projects on this list are ordered by number of github stars. The number of mentions indicates repo mentiontions in the last 12 Months or since we started tracking (Dec 2020).

Plugin discussion

Log in or Post with

Plugin related posts

  • Tell HN: Wireshark has a new sibling: Stratoshark

    9 projects | news.ycombinator.com | 22 Jan 2025
  • Learning Synths

    3 projects | news.ycombinator.com | 8 Jan 2025
  • Jellyfin.Plugin.PhoenixAdult VS Jellyfin.Plugin.Pronium - a user suggested alternative

    2 projects | 2 Jan 2025
  • GitHub Copilot is now available for free: The AI editor for everyone

    10 projects | news.ycombinator.com | 18 Dec 2024
  • INTEGRATION OF DAPPS WITH MODE: WALLET AND SMART CONTRACTS | PART 1: CONNECTING THE WALLET

    1 project | dev.to | 10 Dec 2024
  • How to Upload and Download Files to Docker Volumes

    2 projects | dev.to | 7 Nov 2024
  • Restricting some syntax with ESLint

    1 project | dev.to | 4 Nov 2024
  • A note from our sponsor - CodeRabbit
    coderabbit.ai | 21 Mar 2025
    Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR. Learn more →

Index

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

# Project Stars
1 filemanager 28,290
2 typescript-eslint 15,600
3 filepond 15,458
4 WeChatPlugin-MacOS 14,204
5 CoreDNS 12,781
6 nvim-lspconfig 11,413
7 VirtualApp 10,445
8 ultisnips 7,592
9 TikTokDownload 7,343
10 gitalk 7,087
11 Auto-Photoshop-StableDiffusion-Plugin 7,008
12 JUCE 6,985
13 DroidPlugin 6,918
14 hatch 6,435
15 FriendlyId 6,167
16 zotero-better-notes 6,092
17 jasminum 5,911
18 will_paginate 5,705
19 vim-polyglot 5,647
20 appkit 5,086
21 Small 5,053
22 search-plugins 4,949
23 toggleterm.nvim 4,748

Sponsored
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
coderabbit.ai

Did you know that TypeScript is
the 1st most popular programming language
based on number of references?