Earlier quoted context omitted.
This project is very clearly under active dev. The box Github puts on the repo front page saying the last release was a year ago is misleading.
Thanks for pointing that out! I wonder why that is :S
Zwitterion: a web dev server that lets you import anything
11–20 of 127 posts
Re: Zwitterion: a web dev server that lets you import anything
#12i.e. some thing that does everything for me apart from the bit where I write application and presentation code? That mostly just works and doesn't require me to understand the whole stack.
Because when I switch to other languages/environments I can most remain blissfully unaware of the plumbing that keeps the thing running. I learned all I needed to learn about pip and virtualenv in under an hour. My C# editor just lets me edit code and hit play.
Is there any chance of getting to this state of nirvana for web development?
Re: Zwitterion: a web dev server that lets you import anything
#13Can anyone point me to a workflow where the cognitive load is similar to how it was in the good old days? i.e. some thing that does everything for me apart from the bit where I write application and presentation code? That mostly just works and doesn't require me to understand the whole stack. Because when I switch to other languages/environments I can most remain blissfully unaware of the plumbing that keeps the thi…
For most purposes I find that all these frameworks are simply unnecessary. As a bonus, all the debugging tools in Chrome work much better when there's no obfuscation or packing, and "recompiling" is just Ctrl-R.
Code size and load speed is also massively better than it would otherwise be. Pages load instantly. It's nirvana, I tell you.
Re: Zwitterion: a web dev server that lets you import anything
#14I can’t wait for WASM to kill off JS for mainstream web front end app dev. It can’t come soon enough. edit: Look at Blazor and Yew for example, these types of frameworks can and will replace the bulk of what we use JS for today.
Re: Zwitterion: a web dev server that lets you import anything
#15 "Also...Zwitterion is NOT a bundler. It eschews bundling for a simpler experience."
I get that, run locally, it's not bundling, but how is it not a bundler when running static builds for production?Re: Zwitterion: a web dev server that lets you import anything
#16I can’t wait for WASM to kill off JS for mainstream web front end app dev. It can’t come soon enough. edit: Look at Blazor and Yew for example, these types of frameworks can and will replace the bulk of what we use JS for today.
Re: Zwitterion: a web dev server that lets you import anything
#17Re: Zwitterion: a web dev server that lets you import anything
#18I can’t wait for WASM to kill off JS for mainstream web front end app dev. It can’t come soon enough. edit: Look at Blazor and Yew for example, these types of frameworks can and will replace the bulk of what we use JS for today.
Is it even on the roadmap? WASM does not have access to DOM at all.
Re: Zwitterion: a web dev server that lets you import anything
#19I can’t wait for WASM to kill off JS for mainstream web front end app dev. It can’t come soon enough. edit: Look at Blazor and Yew for example, these types of frameworks can and will replace the bulk of what we use JS for today.
Currently WASM is a way worse in terms of shipping on the web. On top of wrapper JS scripts, .wasm files are treated as statice files like image files. You have extra burden with the path of every .wasm files.
Re: Zwitterion: a web dev server that lets you import anything
#20Can anyone point me to a workflow where the cognitive load is similar to how it was in the good old days? i.e. some thing that does everything for me apart from the bit where I write application and presentation code? That mostly just works and doesn't require me to understand the whole stack. Because when I switch to other languages/environments I can most remain blissfully unaware of the plumbing that keeps the thi…
Vanilla JS? For most purposes I find that all these frameworks are simply unnecessary . As a bonus, all the debugging tools in Chrome work much better when there's no obfuscation or packing, and "recompiling" is just Ctrl-R. Code size and load speed is also massively better than it would otherwise be. Pages load instantly. It's nirvana, I tell you.