Earlier quoted context omitted.
wow, this takes me back. before cakephp, there was fusebox. i had started to write my own framework back then, but found fusebox to do most of what i'd wanted to do, so used it for a few projects. then cakephp came out as an iteration on the MVC pattern, and i switched immediately. only later did i discover rails, which was even more pleasant, as it sat atop ruby rather than php.
Never used Fusebox in PHP, but used it in ColdFusion, where it originated.
Ask HN: Web frameworks – which less popular frameworks are you using and why?
121–130 of 148 posts
Re: Ask HN: Web frameworks – which less popular frameworks are you using and why?
#122Javascript: SvelteJS Using it for some personal projects with Vite and it is a breath of fresh air. I use React for work during the day, but coding in Svelte just brings me joy.
React is really grinding my gears, lately. Do you use something t like Redux with Svelte or is the approach different?
Re: Ask HN: Web frameworks – which less popular frameworks are you using and why?
#123For SPAs I still use Backbone.js... Yes, I know, 2014 called and it wants its framework back. But... I like it. It's lightweight and doesn't impose any particular style or philosophy. It's well suited to small projects. On the back end, for small projects, using a full-fledged framework is usually overkill. Writing a simple API that reads and write normalized data is quite trivial, and when one is writing everything…
Edit: dates
Re: Ask HN: Web frameworks – which less popular frameworks are you using and why?
#124Javascript: SvelteJS Using it for some personal projects with Vite and it is a breath of fresh air. I use React for work during the day, but coding in Svelte just brings me joy.
I really hope SvelteJS takes off!
Re: Ask HN: Web frameworks – which less popular frameworks are you using and why?
#125Earlier quoted context omitted.
React is really grinding my gears, lately. Do you use something t like Redux with Svelte or is the approach different?
At the moment there is no external library for state management in Svelte. There is however Svelte context api and stores but I doubt you can make complex apps with that alone same as is very hard to do it with React context api.
https://svelte.dev/tutorial/custom-stores
In fact, their API is so similar to Redux and RXJS that I think you might not even need to write any glue-code.
https://redux.js.org/api/store/#subscribelistener https://rxjs.dev/guide/observable#subscribing-to-observables
Re: Ask HN: Web frameworks – which less popular frameworks are you using and why?
#126I've been looking into Remix ( https://remix.run/ ) to build javascript web project. I come from 10 years of Python/Django background and I want to avoid complexity of frameworks such as React particularly the headache of state management. Remix seems to use an approach similar to Hotwire Turbo Frames and a syntax of React JSX. This allows creating composable pages and loading partials in a page while still being abl…
Re: Ask HN: Web frameworks – which less popular frameworks are you using and why?
#127Re: Ask HN: Web frameworks – which less popular frameworks are you using and why?
#128Re: Ask HN: Web frameworks – which less popular frameworks are you using and why?
#129This is a self-plug, but I use the (commercial) framework that I wrote: Nodewood [1]. I really enjoy JavaScript, specifically the combination of Express on the back-end and Vue on the front-end, and I got tired of having to do so much setup every time I wanted to work on a new project. So I abstracted it out into its own thing and started adding fixes to all the other little things that bothered me about web developm…
Re: Ask HN: Web frameworks – which less popular frameworks are you using and why?
#130Tangentially related: Is there any "framework" that simply loads a webassembly executable and then has it directly manipulate the entire web page being displayed to the user by the browser ? Presumably while keeping a websocket open to the server host.