Hacker News new | past | comments | ask | show | jobs | submit | xyzzyrz's comments login

We also have this page that goes into some more detail: https://www.plasmic.app/vs-builder-io


Just some of the differences: https://news.ycombinator.com/item?id=38701406

And yes you can connect directly a database - critically, Plasmic lets you define backend operations that work with auth: https://docs.plasmic.app/learn/integrations/#security


Excited to see this posted here! I think probably because we announced it going open source today.

I think the GitHub page is probably a bit clearer than our website right now:

https://github.com/plasmicapp/plasmic

Basically, it's a visual page builder that plugs into your own Next.js/Remix/React/etc. codebase. Your marketing/content/design team can then build and publish pages without filing tickets on eng. This (content management) is the main use case.

The most interesting aspect is that editors can drag and drop React components from your own codebase as building blocks. This is very powerful, esp. with e.g. data fetching React components.

Why open source? Because we love the tool. Plasmic has been in production deployment at companies big and small. But we think it can grow far beyond ourselves as an open source project. We’d love to see a broader community take it in unexplored directions. Community users have even started using it to build emails with React.Email and mobile screens in React Native.

Would love to hear folks' questions and feedback!


I think another thing interesting about Plasmic is that it is a bit ambitious in trying to combine some seemingly disparate genres:

- Webflow, Wordpress and other page builders

- Retool and other tool builders

- Glide and no-code app builders

- Contentful and other CMSes

Today these are different tools to specialize in, but the line between, say, a website and an application is blurry (consider an ecommerce storefront with user logins, or a customer portal). With the right foundations, we think these can be unified—Plasmic’s UI can adapt to different levels of control for different personas/tasks.

So a newer use case is that you can use it to build applications as well as websites, for both developers and non-developers. This is the more experimental side of the project, beyond the content management use case.


Eh, their page doesn’t even load. Feh!


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.


There's a vibrant industry of similar tools - but lots of differences and room to innovate!

Just a few of the differences: Plasmic....

- Is not specific to MUI

- Supports actual design control (beyond theming)

- Supports defining reusable components in the editor, with slots/props/variants

- Is suitable for websites and applications where page speed matters (static/SSR pre-rendering and data fetching, image optimization, etc.)

- Has a more structured layout system

- Is highly configurable UI for different personas - e.g. non-developers on the team

- Has cross-project imports / reusable libraries

- Has Figma import

- More...


Replied to similar comment here: https://news.ycombinator.com/item?id=38701366


Congrats on going open source! Which components are open sourced specifically? Is there any chance it will be self-hosteable? I don't want to host it myself any time soon but I prefer giving my money to a company where that's an option.


We still have work to do to make self hosting (much) easier, but yes, that's the plan!


Awesome, that is great news!


I am so delighted to see this go open source!!


So it's like a more advanced alternative to something like GrapesJS that also includes integration with some popular web frameworks?


You can think of it like that - GrapesJS ultimately outputs HTML that exists in its own universe, whereas Plasmic focuses more on integrating with existing codebases, where you might want to use your React components, render in your React context, etc.


This is awesome. Would love to learn more and build content at n0c0de.com using this. Please kindly fix the slack link.


Fixed, thanks!


Looks really cool and ambitious!

Curious why you guys decided to go open-source, and whether that was always the plan.


I talk about the "why" a bit above, but we've talked about how to open source it internally since almost its inception, but there's work involved in open sourcing that we just had to prioritize like any other work item, as well as concerns around whether we were ready to support it (for instance, in light of rapidly changing code and data).


Thanks for the feedback, we're still iterating on the homepage and didn't expect to get posted here yet!

Our repo https://github.com/plasmicapp/plasmic might be a bit more concrete.

It's a visual page builder that integrates with React codebases. Content management is our biggest use case - i.e., dev team integrates with Plasmic, and then marketing/content/design teams can create landing pages on the marketing site.

(A newer use case is building applications as well, hence some of the comparisons with Retool etc. There's actually quite a bit of overlap between these use cases, esp. when considering external-facing "customer portal"-style applications.)


For anyone else looking for a link to Herb Sutter's accompanying talk at cppcon:

https://youtu.be/CzuR0Spm0nA?t=14532


Hi, I work on Plasmic. If not React, how would you encode composition, state, and behavior?


I wouldn't. A huge amount of interactivity can be done in pure CSS, and often design work is exploratory or experimental and doesn't need to output a fully functional component, it just needs the functionality CSS and HTML provide like interactive inputs and focus states.

Once you get the basic design abilities down, you can behind the scenes setup logic using some framework (sure you can use React, but I think tying a tool to a framework like that is a bad idea, React won't last forever and hopefully will die soon in place of newer better frameworks) that doesn't actually impact the basic HTML/CSS that is output.

Devs will still be needed to hook up designs to code logic, but at least give designers the ability to give devs clean HTML/CSS for them to wire up into JSX or Vue templates or whatever because currently many front-end devs are absolutely shit at HTML and CSS and React encourages lots of bad practices with HTML and CSS.


Some sort of open AST. Honestly "HTML" is pretty close except string typed attribute. `data-`|dataset is also pretty close.

> Some sort of open AST

well React is kind of that but it's not serializable. The "React Server Components" is trying.

---

We just need HTML but in form of AST so that it is serializable and programmable.


I don't follow how HTML comes anything close to expressing dynamism, composition, state, Turing completeness, etc.

Sure, you can encode whatever you want inside of data attributes, but that's just ignoring the problem. You still have to decide on a language to express all that within your data attributes.

React server components also does not is not trying to serialize this. Quite the opposite. We have an in-depth write up here: https://www.plasmic.app/blog/how-react-server-components-wor...

(Sise note: Plasmic's AST is in the open and has an API.)


I did a quick dig on Plasmic's AST and not found its spec. Is there a repo for its specification?


> 2. Server serializes root component element to JSON

That's what I'm talking about.


I largely agree with your take!

But just to clarify one point: Plasmic (importantly) doesn't require using any specific libraries. You can bring your own arbitrary React code.


Congrats on launching! I work on Plasmic. I have a sibling post on how I think we're quite different. But just to also clarify some points:

(1) Plasmic does support git as well.

(2) You can also continue to edit your code.

(3) You can use Plasmic as a CMS, or as a code generator.


I work on Plasmic. I think we're quite different! I would summarize as:

- FlyCode focuses on text/image changes within your existing code.

- Plasmic lets you create and edit UIs using your React components as building blocks, but doesn't try to edit your existing code.

For making text/copy changes, there's also another product that uses your Figma designs as a source of truth:

https://news.ycombinator.com/item?id=27142930


Appreciate the summary! There are a handful of new players building around react components - really interesting space. We believe this is one aspect of a broader movement so educating the market is a group effort :)


Hi! Thanks for the feedback on Plasmic.

Re: "super heavy" output: A blank component should result in one corresponding div. Maybe you're weighing the API client library? You can codegen pure React modules if you don't want the loader library itself.

If you have any specific feedback on the UI, would love to listen. Thank you!


The whole thing is recorded, I posted a link to twitch in slack.

An unhydrated card like the testimonial example was 28k via code gen.

I put tons of feedback in that video, if your teams are not watching it, you are missing out immensely

Despite not pulling a lot of punches in my stream, I still think Plasmic is closest of all I have tried to a developer friendly, maybe lovable in time, product


Thanks, super helpful! (I haven't personally watched it yet, but our team has picked it up.)


If you want the version with the awesome jazz tunes in the background, ping Yang to get me an upload link.

It will definitely be easier to sit through


Consider applying for YC's Spring batch! Applications are open till Feb 11.

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: