mui-toolpad VS pageplug

Compare mui-toolpad vs pageplug and see what are their differences.

pageplug

PagePlug 是 Appsmith 的中国化项目。基于Appsmith做了整体性能的优化及汉化,也集合了特色表单解决方案Formily组件、图表解决方案Echarts组件、低代码小程序开发等,是面向研发使用的一个开源的、声明式的前后端一体低代码,项目逻辑主要是在前端的解释器和设计器上 (by cloudtogo)
Our great sponsors
  • SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
mui-toolpad pageplug
10 2
718 1,214
7.7% 10.5%
9.9 9.9
7 days ago 2 months ago
TypeScript TypeScript
MIT License Apache License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

mui-toolpad

Posts with mentions or reviews of mui-toolpad. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-03-01.
  • FastUI: Build Better UIs Faster
    12 projects | news.ycombinator.com | 1 Mar 2024
    This seems to mainly be useful for spinning up quick and dirty internal tools.

    But for that use-case, isn't it easier to use something visual and established like Retool (https://retool.com/) or that generates nice react code, like MUI Toolpad (https://mui.com/toolpad/)?

  • Plasmic.app – the visual builder for your tech stack
    9 projects | news.ycombinator.com | 19 Dec 2023
    How does it stack up against MUI's Toolpad? (https://mui.com/toolpad/)

    All things considered, they seem pretty similar - visual UI to generate React code that works alongside existing codebase, open-source & self-hostable, etc.

    9 projects | news.ycombinator.com | 19 Dec 2023
    The generated react living alongside custom react sounds similar to MUI's low-code drag-n-drop editor that they're working on (https://mui.com/toolpad/).

    Looking at the demo, does Plasmic have any killer features that MUI's offering doesn't? At the moment, MUI's main limitation is that it can't connect directly to a database: you have to go through an API, or write an API route for each app that proxies the SQL queries.

  • I hate CSS: how can I build UIs?
    13 projects | news.ycombinator.com | 5 Nov 2023
  • Show HN: MUI Toolpad – Open-source, local-first, admin app builder
    2 projects | news.ycombinator.com | 27 Jul 2023
    - All configuration is stored in local files which you can version-control, edit, and deploy in any way you want.

    You can check out our live demo [1]. If you find it useful, you can support us by giving a star on GitHub [2]. We released our public beta [3] this week. We are happy to answer any questions/feedback in the comments.

    [1]: https://stackblitz.com/fork/github/mui/mui-toolpad/tree/mast...

    [2]: https://github.com/mui/mui-toolpad

    [3]: https://mui.com/blog/2023-toolpad-beta-announcement/

    2 projects | news.ycombinator.com | 27 Jul 2023
  • Ask HN: How can a BE/infra developer handle the FE side of personal projects?
    7 projects | news.ycombinator.com | 13 Jun 2023
    - Vercel for hosting, because they take a Git repo and host it for you in a couple clicks and manage everything. Free or cheap ($20/mo) at MVP stage.

    - Next.js (Vercel's open-source React framework) will handle frontend tooling, routing, type checking, and linting for you with a single command (`npx create-next-app`). Starting the server is one more command (`next dev`) and your page is up and running.

    - For the UI layer, I'd recommend either starting with one of their prebuilt templates (https://vercel.com/templates/next.js) and modifying it as needed

    OR using a modern component system like https://mui.com/ or https://ant.design/ or https://chakra-ui.com/ instead of trying to learn and write your own component and JS+CSS code. Using one of these systems will allow you to compose complex apps out of well-made, well-documented, easy-to-use primitives, making it much easier to focus on business needs rather than basic frontend components and infra.

    The basic MUI system, for example, is totally free. You can find third-party apps built on top of it (https://mui.com/store/#populars) and pay a one-time license fee to essentially "fork" them, getting a prebuilt working app that you just attach your backend API calls to.

    There are also low-code extensions of these frameworks (meaning you start with a GUI, plan out your app that way, but still have access to the source for future advanced changes). Examples are https://mui.com/toolpad/ and https://retool.com/use-case/dashboards-and-reporting

    ----------------------

    Is this a lot? Yes and no. React has a learning curve of its own, but it can take the place of having to learn raw HTML and CSS. (Yes, you eventually should know those things for debugging and polishing, but they are largely a level of abstraction below what you really need for a basic MVP).

    Once you learn React, its primary value isn't that it's a great language (opinions differ) but that it has a humongous ecosystem of third-party vendors, free open-source libraries (basically any component you might think to build is probably already available on npm), and a wide availability of devs from hobbyists to full-timers.

    Others in this topic will suggest going away from Javascript as much as possible (and using things like HTMX or backend-to-HTML solutions like the old days). That's fine, but you lose out on the rich ecosystem of React and Javascript, so you end up having to build more yourself -- which is what you're trying to avoid in your case.

    My own 2¢: As someone who grew up with HTML and made websites since the birth of Javascript and CSS, the web has always been messy. It's always been a semi-open ecosystem controlled by a few major companies (whether that's Netscape or Microsoft or Sun or Adobe, or these days Google and Apple), so it very much suffers from design-by-bullying. Whoever is the power player of the decade gets to add their favorite technologies that everyone else is forced to adopt. Thus the web became a hodgepodge of document markup systems poorly fitted for modern apps, with various hacks on top of hacks built to satisfy some big company or another's in-house needs. Sadly, that means going "vanilla HTML+JS" doesn't leave you with much, just the shattered legacy of poor historical decisions.

    React at least helps by encouraging componentization and abstraction of UI elements to functions, using cleaner data models (actual variables and objects) vs direct DOM manipulation (storing page content as state).

    We've gone through many generational shifts in approach, from the raw HTML days of Geocities to the you-build-it, we-host-it approach of Godaddy and its ilk, to the "all in one" CMSes like Wordpress or Drupal. These days, (if you want there to be), there can be a pretty clear separation between backend and frontend systems, and with that specialization came a bunch of startups (mentioned above) whose approach is "let us help you build it as best as we can, so you can focus on business logic instead of basic UI and infra". After 20 years of doing this, the current state of the web developer experience is actually my favorite so far. HTML and CSS suck for building apps (as opposed to documents), and although Javascript is a lot better since ECMAscript v6 (ES6), it is still inextricably tied to the DOM (and thus HTML elements) unless you use an abstraction like React.

    It's the difference between writing something like:

    ```

  • What is the most used react UI framework ? need to visual drag and drop app
    2 projects | /r/reactjs | 8 Dec 2022
    We at MUI have been working on an open-source drag-and-drop React app builder. Link to the landing page: https://mui.com/toolpad/ This week we have published an interactive demo as well. You can check out the repo here.

pageplug

Posts with mentions or reviews of pageplug. We have used some of these posts to build our list of alternatives and similar projects.

We haven't tracked posts mentioning pageplug yet.
Tracking mentions began in Dec 2020.

What are some alternatives?

When comparing mui-toolpad and pageplug you can also consider the following projects:

hypertool - Hypertool helps you build internal tools that seamlessly work with your databases, APIs, spreadsheets, and other apps.

taro-playground - The Taro Playground App is a cross-platform application developed using Taro, to help developers develop and debug Taro applications.

primereact - The Most Complete React UI Component Library

appsmith - Platform to build admin panels, internal tools, and dashboards. Integrates with 25+ databases and any API.

nocobase - NocoBase is a scalability-first, open-source no-code/low-code platform to build internal tools.

mantine - A fully featured React components library

n8n - Free and source-available fair-code licensed workflow automation tool. Easily automate tasks across different services.

taro-hooks - Hooks Library for Taro

plasmic - Visual builder for React. Build apps, websites, and content. Integrate with your codebase.

taro - 开放式跨端跨框架解决方案,支持使用 React/Vue/Nerv 等框架来开发微信/京东/百度/支付宝/字节跳动/ QQ 小程序/H5/React Native 等应用。 https://taro.zone/

PowerWeChat - PowerWechat是一款基于WeChat SDK for Golang,支持小程序、微信支付、企业微信、公众号等全微信生态

Tailwind CSS - A utility-first CSS framework for rapid UI development.