DEV Community

[Comment from a deleted post]
Collapse
 
darkwiiplayer profile image
𒎏Wii 🏳️‍⚧️

The sad thing about all these frameworks is that none of them really works well in an environment that's not completely centered around node.

What I really want is something like svelte but as a single executable, either written in JS with the option of a single-executable bundle or just written in C entirely, that actually integrates in a make/tup workflow and actually compiles my files at more than 1 LOC/h.

From what I've seen so far, svelte, with its lack of dependencies, seems like the only option where such a thing would be possible without a complete rewrite of the whole concept though.

Collapse
 
hanna profile image
Hanna

That's a net idea but i have no idea how you'd go about making it.

Collapse
 
dharmax profile image
avi

Would you kindly explain what do you mean by " none of them really works well in an environment that's not completely centered around node" ? It is front-end, node is back-end, so ...??

Collapse
 
darkwiiplayer profile image
𒎏Wii 🏳️‍⚧️

have you ever tried integrating any of these "modern" web technologies with tup?

Collapse
 
ptejada profile image
Pablo Tejada

You won't get far in web development nowadays without node anyways.

Collapse
 
darkwiiplayer profile image
𒎏Wii 🏳️‍⚧️

I mean, for the longest time, you couldn't get far with anything without gnu software, yet they still split their tools very nicely. And wouldn't you know, there's clang now and it works perfectly well with make. Try combining node and deno though.

Collapse
 
jimafisk profile image
Jim Fisk

What I really want is something like svelte but as a single executable

Have you tried github.com/plentico/plenti? We use Go + V8 to compile components, so you don't need NodeJS/NPM on your computer.

Collapse
 
darkwiiplayer profile image
𒎏Wii 🏳️‍⚧️

That sounds like a pretty cool concept! I will definitely check that out :D