Well, I don’t think thats what OP had in mind but there is WASM as well.
Comment on Best easy to use e-commerce front end with no javascript?
AliasVortex@lemmy.world 4 months ago
Uhh, I may not be the sharpest software developer in the shed, but I’m not sure I understand what you’re asking for here. By the sound of it, you’re looking to build and deploy an entire e-commerce website without any JavaScript at all, correct? Which makes me more than a little curious about what you’re expecting to use instead.
Deckweiss@lemmy.world 4 months ago
gnutard@sh.itjust.works 4 months ago
I’m just looking to have my users not use JS to shop at my store. I’m not too familiar with web dev terminology, sorry if I used the wrong terminology lol
cmnybo@discuss.tchncs.de 4 months ago
It sounds like he wants everything done server side like they did in the mid 90’s. It’s certainly possible, but it won’t result in a very good user experience. The whole page would have to reload to change anything on it.
lemmyvore@feddit.nl 4 months ago
That’s how Amazon works.
If you think all the stores in the internet now are PWA’s you are sadly mistaken. MVC web apps are pretty well suited for things like shops and they never went away. There are entire languages and frameworks like PHP, Python, Java that actively support that style of app. It also lends itself really well to caching.
I wouldn’t say it’s completely JavaScript free though. Client side JS is still extremely useful and attempting to make a store with zero JS might be a bit tough.
Deckweiss@lemmy.world 4 months ago
With a Blazor (serverside mode) project you could have that with a nice user experience. But blazor has a tiny js which initializes something.
Maybe there is some blazor serverside e-commerce project out there, I wouldn’t personally recommend it though.