Live data from Hacker News

Ask HN: Starting a project today, which JavaScript framework would you use?

news.ycombinator.com

1–8 of 8 posts

Re: Ask HN: Starting a project today, which JavaScript framework would you use?

#3
post #2

Depending on the application needs, I'd try something new: - https://github.com/hyperapp/hyperapp - https://github.com/KingPixil/moon - https://github.com/pakastin/redom And, if you must use React, then I'd choose Preact instead.

What about VueJs?

Re: Ask HN: Starting a project today, which JavaScript framework would you use?

#6
Mithril.js (https://github.com/MithrilJS/mithril.js)

- only 8kb which should be more important to people

- no reinventing javascript in html

- can easily plug in flyd (or other) tiny stream libraries for reactive data

- small api surface area to learn before you can be productive (if you actually know javascript)

Re: Ask HN: Starting a project today, which JavaScript framework would you use?

#7
post #6

Mithril.js ( https://github.com/MithrilJS/mithril.js ) - only 8kb which should be more important to people - no reinventing javascript in html - can easily plug in flyd (or other) tiny stream libraries for reactive data - small api surface area to learn before you can be productive (if you actually know javascript)

Seems interesting but documentation and samples are lacking comparing to other frameworks

Re: Ask HN: Starting a project today, which JavaScript framework would you use?

#8
post #7
post #6

Mithril.js ( https://github.com/MithrilJS/mithril.js ) - only 8kb which should be more important to people - no reinventing javascript in html - can easily plug in flyd (or other) tiny stream libraries for reactive data - small api surface area to learn before you can be productive (if you actually know javascript)

Seems interesting but documentation and samples are lacking comparing to other frameworks

I've found Mithril's documentation to be thorough; that was one of my reasons for choosing it.