5 ms·
I'm sorry, but what problem does this solve? Seems like this makes the developer experience worse in every way.
by bdorn 4y ago
I'm sorry, but what problem does this solve? Seems like this makes the developer experience worse in every way.
- jimhi 4y agoYou can see many examples if you google - "How do I put react into my " Github page/Shopify/Wordpress etc. Many developers inherit or prefer a plain page and just want to use a cool open source react component real quick like adding a slick calculator to their existing webpage.
- bdorn 4y agoI'm not following - even manually inserting script tags to mount the component is better than relying on another site like this to bundle it.
- jimhi 4y agoAs said below, most common react libraries will fail if you try to just use ReactDOM. Mounting has many issues if you try it for more than the basic hello world. Not to mention you can use multiple different versions of react with this. Just as an example, I was trying to add this simple PinField to my wordpress page and it will break if you try to mount: https://www.npmjs.com/package/react-pin-field https://www.npmjs.com/package/react-pin-field
- sibit 4y ago> most common react libraries will fail if you try to just use ReactDOM I'd think that would be a pretty big sign that React might not be the right tool for the job. I'm all for building custom hammers but sometimes it might just be better to just grab a screwdriver.
- jimhi 4y agoAlso, you can just download the bundle if you want to stop using the site to host it. Personally I make enough edits I like to keep it up.
- sibit 4y agoMy comment wasn't a critique on your product. I can totally see how this could be handy and I'll keep it bookmarked. I was mostly critiquing that web devs nowadays always seem to try and reach out for some React package whenever they hit any sort of problem. I can see that the React packages are mandatory, any plans to support other frameworks?
- jimhi 4y agoVue would be pretty easy. From personal experience it’s mostly react that’s has all these open source things someone might want. Was there one you were thinking of?
- kclay 4y agoFunny enough I ran into this exact use case recently. We have a marketing site for a client done with webflow..But we needed to add a third party widget that only had an react library. So I ended up creating a CRA project so that I could include the bundled file and render the component as needed using the same setup (it was a modal + some purchase logic). Added some bare js hooks to trigger some of the logic via a button press. Worked well actually
- bdorn 4y agoThat works, I was more responding to using this random site instead of just CRA locally. Just seems odd.