YAJSF ? Yet-another-js-framework
Mithril.js – A modern client-side Javascript framework
81–83 of 83 posts
Re: Mithril.js – A modern client-side Javascript framework
#82The main problem with steering away from templates is that designers who know HTML are immediately alienated from the code base. Same thing with CSS as objects instead of using real CSS. When working with libs that use HTML templates such as Vue, it's still possible for designers to be integrated in the development process. But with HyperScript, JSX, or Mithril, anyone contributing to the codebase has to know JavaScr…
So your approach might work for simple apps, more ambitious stuff will get overly complicated.
That is imho one of the strength of mithril.js: Simple things are trivial, complicated things are pretty straight forward to solve.
Re: Mithril.js – A modern client-side Javascript framework
#83Earlier quoted context omitted.
True. If you're creating an app that will be used in production then of course you need to use npm, webpack and other tools. But if you're new to a framework and just want to experiment then being able to create an html file with a couple of script tags and writing code removes many barriers to entry. React, Vue and many others already offer this, I thought it was worth mentioning that Mithril does this too.
I don't know. Creating the HTML file, finding a CDN, and adding script tags take more than: npx create-react-app MyApp There is nothing to install, and you have a complete playground to experiment.
Also taking the time to set up your project with what's just needed will allow to dodge a lot of bullets of breaking or useless dependencies, malicious dependency update tc.